diff options
author | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-17 16:09:58 +0000 |
---|---|---|
committer | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-17 16:09:58 +0000 |
commit | 87a80855771139a4140dd6686b7611290fb7937d (patch) | |
tree | 258f3bb812d92677f5fceb6b5e67c0e3fbfd0fcf /ipc | |
parent | 93748d64955b60c0c75ababddb8be26823452cb7 (diff) | |
download | chromium_src-87a80855771139a4140dd6686b7611290fb7937d.zip chromium_src-87a80855771139a4140dd6686b7611290fb7937d.tar.gz chromium_src-87a80855771139a4140dd6686b7611290fb7937d.tar.bz2 |
Android: cleanup gtest_target_type conditions.
For a long time (crrev.com/133053) OS==android implies:
gtest_target_type=shared_library
Cleanup the spurious conditions and obsolete TODOs.
BUG=
Review URL: https://codereview.chromium.org/278443003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271222 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc.gyp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/ipc/ipc.gyp b/ipc/ipc.gyp index c5a8c0b..a6e9269 100644 --- a/ipc/ipc.gyp +++ b/ipc/ipc.gyp @@ -67,7 +67,7 @@ 'unix_domain_socket_util_unittest.cc', ], }], - ['OS == "android" and gtest_target_type == "shared_library"', { + ['OS == "android"', { 'dependencies': [ '../testing/android/native_test.gyp:native_test_native_code', ], @@ -105,7 +105,7 @@ 'ipc_test_base.h', ], 'conditions': [ - ['OS == "android" and gtest_target_type == "shared_library"', { + ['OS == "android"', { 'dependencies': [ '../testing/android/native_test.gyp:native_test_native_code', ], @@ -167,10 +167,7 @@ }, ], }], - # Special target to wrap a gtest_target_type==shared_library - # ipc_tests into an android apk for execution. - # See base.gyp for TODO(jrg)s about this strategy. - ['OS == "android" and gtest_target_type == "shared_library"', { + ['OS == "android"', { 'targets': [ { 'target_name': 'ipc_tests_apk', |