Summary: For more background, see: https://fb.facebook.com/groups/303159406399348/permalink/1334977403217538/ https://fburl.com/auto-format-build-files D4527873 fbshipit-source-id: 278ce6f67f5df830b2218e3aca69be103d3c56a6
40 lines
783 B
Python
40 lines
783 B
Python
# Copyright 2014-present, Facebook, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the license found in the
|
|
# LICENSE-examples file in the root directory of this source tree.
|
|
|
|
include_defs("//YOGA_DEFS")
|
|
|
|
android_binary(
|
|
name = "sample",
|
|
keystore = ":debug_keystore",
|
|
manifest = "AndroidManifest.xml",
|
|
deps = [
|
|
ANDROID_SAMPLE_JAVA_TARGET,
|
|
ANDROID_SAMPLE_RES_TARGET,
|
|
],
|
|
)
|
|
|
|
android_resource(
|
|
name = "res",
|
|
package = "com.facebook.samples.yoga",
|
|
res = "res",
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
ANDROID_RES_TARGET,
|
|
],
|
|
)
|
|
|
|
keystore(
|
|
name = "debug_keystore",
|
|
properties = "debug.keystore.properties",
|
|
store = "debug.keystore",
|
|
)
|
|
|
|
project_config(
|
|
src_target = ":sample",
|
|
)
|