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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 'variables': { | 299 'variables': { |
300 # TODO(ajwong): Is there a way to autodetect this? | 300 # TODO(ajwong): Is there a way to autodetect this? |
301 'module_dir': 'base' | 301 'module_dir': 'base' |
302 }, | 302 }, |
303 'conditions': [ | 303 'conditions': [ |
304 ['OS == "android"', { | 304 ['OS == "android"', { |
305 'sources!': [ | 305 'sources!': [ |
306 # TODO(michaelbai): Removed the below once the fix upstreamed. | 306 # TODO(michaelbai): Removed the below once the fix upstreamed. |
307 'debug/stack_trace_unittest.cc', | 307 'debug/stack_trace_unittest.cc', |
308 'memory/mru_cache_unittest.cc', | 308 'memory/mru_cache_unittest.cc', |
309 'process_util_unittest.cc', | |
310 'synchronization/cancellation_flag_unittest.cc', | 309 'synchronization/cancellation_flag_unittest.cc', |
311 ], | 310 ], |
312 'dependencies': [ | 311 'dependencies': [ |
313 'android/jni_generator/jni_generator.gyp:jni_generator_tests', | 312 'android/jni_generator/jni_generator.gyp:jni_generator_tests', |
314 ], | 313 ], |
315 'conditions': [ | 314 'conditions': [ |
316 ['gtest_target_type == "shared_library"', { | 315 ['gtest_target_type == "shared_library"', { |
317 'dependencies': [ | 316 'dependencies': [ |
318 '../testing/android/native_test.gyp:native_test_native_code', | 317 '../testing/android/native_test.gyp:native_test_native_code', |
319 ], | 318 ], |
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
664 'variables': { | 663 'variables': { |
665 'test_suite_name': 'base_unittests', | 664 'test_suite_name': 'base_unittests', |
666 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit
tests<(SHARED_LIB_SUFFIX)', | 665 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit
tests<(SHARED_LIB_SUFFIX)', |
667 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], | 666 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], |
668 }, | 667 }, |
669 'includes': [ '../build/apk_test.gypi' ], | 668 'includes': [ '../build/apk_test.gypi' ], |
670 }], | 669 }], |
671 }], | 670 }], |
672 ], | 671 ], |
673 } | 672 } |
OLD | NEW |