aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Rumou Duan <rduan@google.com>2016-02-05 02:32:24 +0000
committerGravatar David Chen <dzc@google.com>2016-02-05 20:52:44 +0000
commit3c26e05842e7140c5801e1575fc647497a35e022 (patch)
tree184b84db13012ec52ce7e46dace3cc333504d245 /tools
parent3a95f353704dc2f7061e2c0786c2459ac1db0fd1 (diff)
Move ObjC compilation actions for J2ObjC-translated code from binary level to the edges (J2ObjcAspect and J2ObjcProtoAspect).
RELNOTES[INC]: ObjC compile actions for J2ObjC-translated code now only has access to headers from the java deps of the associated original java rule. These compile actions no longer takes the compiler options specified in "copts" attribute on objc_binary/ios_test rules. J2ObjC dead code removal (enabled through flag "--j2objc_dead_code_removal") now happens *after* ObjC compilation. -- MOS_MIGRATED_REVID=113910545
Diffstat (limited to 'tools')
-rw-r--r--tools/objc/BUILD5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/objc/BUILD b/tools/objc/BUILD
index b9eb66b571..4b6b56c417 100644
--- a/tools/objc/BUILD
+++ b/tools/objc/BUILD
@@ -119,3 +119,8 @@ py_library(
name = "j2objc_dead_code_pruner",
srcs = ["j2objc_dead_code_pruner.py"],
)
+
+objc_library(
+ name = "dummy_lib",
+ srcs = ["dummy.c"],
+)