2017-02-14 07:54:20 -08:00
|
|
|
# Copyright 2014-present, Facebook, Inc.
|
2017-02-14 00:05:06 -08:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
2017-02-14 07:54:20 -08:00
|
|
|
# This source code is licensed under the license found in the
|
|
|
|
# LICENSE-examples file in the root directory of this source tree.
|
2017-02-14 00:05:06 -08:00
|
|
|
|
2017-02-24 21:40:45 -08:00
|
|
|
include_defs("//YOGA_DEFS")
|
2017-02-14 00:05:06 -08:00
|
|
|
|
|
|
|
android_binary(
|
2017-02-24 21:40:45 -08:00
|
|
|
name = "sample",
|
|
|
|
keystore = ":debug_keystore",
|
|
|
|
manifest = "AndroidManifest.xml",
|
|
|
|
deps = [
|
|
|
|
ANDROID_SAMPLE_JAVA_TARGET,
|
|
|
|
ANDROID_SAMPLE_RES_TARGET,
|
|
|
|
],
|
2017-02-14 00:05:06 -08:00
|
|
|
)
|
|
|
|
|
2017-02-14 03:05:32 -08:00
|
|
|
android_resource(
|
2017-02-24 21:40:45 -08:00
|
|
|
name = "res",
|
|
|
|
package = "com.facebook.samples.yoga",
|
|
|
|
res = "res",
|
|
|
|
visibility = [
|
|
|
|
"PUBLIC",
|
|
|
|
],
|
|
|
|
deps = [
|
|
|
|
ANDROID_RES_TARGET,
|
|
|
|
],
|
2017-02-14 03:05:32 -08:00
|
|
|
)
|
|
|
|
|
2017-02-14 00:05:06 -08:00
|
|
|
keystore(
|
2017-02-24 21:40:45 -08:00
|
|
|
name = "debug_keystore",
|
|
|
|
properties = "debug.keystore.properties",
|
|
|
|
store = "debug.keystore",
|
2017-02-14 00:05:06 -08:00
|
|
|
)
|