Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['OS=="linux"', { | 8 ['OS=="linux"', { |
| 9 'compile_suid_client': 1, | 9 'compile_suid_client': 1, |
| 10 'compile_credentials': 1, | 10 'compile_credentials': 1, |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 273 ], | 273 ], |
| 274 }], | 274 }], |
| 275 # Strategy copied from base_unittests_apk in base/base.gyp. | 275 # Strategy copied from base_unittests_apk in base/base.gyp. |
| 276 [ 'OS=="android" and gtest_target_type == "shared_library"', { | 276 [ 'OS=="android" and gtest_target_type == "shared_library"', { |
| 277 'targets': [ | 277 'targets': [ |
| 278 { | 278 { |
| 279 'target_name': 'sandbox_linux_jni_unittests_apk', | 279 'target_name': 'sandbox_linux_jni_unittests_apk', |
| 280 'type': 'none', | 280 'type': 'none', |
| 281 'variables': { | 281 'variables': { |
| 282 'test_suite_name': 'sandbox_linux_jni_unittests', | 282 'test_suite_name': 'sandbox_linux_jni_unittests', |
| 283 'input_shlib_path': | |
| 284 '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)' | 283 '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)' |
| 285 'sandbox_linux_jni_unittests' | 284 'sandbox_linux_jni_unittests' |
| 286 '<(SHARED_LIB_SUFFIX)', | 285 '<(SHARED_LIB_SUFFIX)', |
|
Nico
2014/04/04 18:32:25
Remove the 3 lines above this comment too?
cjhopman
2014/04/04 18:52:39
That's a good idea. Done.
| |
| 287 }, | 286 }, |
| 288 'dependencies': [ | 287 'dependencies': [ |
| 289 'sandbox_linux_jni_unittests', | 288 'sandbox_linux_jni_unittests', |
| 290 ], | 289 ], |
| 291 'includes': [ '../../build/apk_test.gypi' ], | 290 'includes': [ '../../build/apk_test.gypi' ], |
| 292 } | 291 } |
| 293 ], | 292 ], |
| 294 }], | 293 }], |
| 295 ], | 294 ], |
| 296 } | 295 } |
| OLD | NEW |