Summary: These only exist to support a deprecated form of project generation which is about to be removed. Reviewed By: marcinkosiba Differential Revision: D4945841 fbshipit-source-id: 3d35b8f8cd902572995ee4f55f9b5930efa186ec
36 lines
736 B
Python
36 lines
736 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",
|
|
)
|