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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 29 matching lines...) Expand all Loading... |
40 'run_all_unittests.cc', | 40 'run_all_unittests.cc', |
41 'connection_unittest.cc', | 41 'connection_unittest.cc', |
42 'sqlite_features_unittest.cc', | 42 'sqlite_features_unittest.cc', |
43 'statement_unittest.cc', | 43 'statement_unittest.cc', |
44 'transaction_unittest.cc', | 44 'transaction_unittest.cc', |
45 ], | 45 ], |
46 'include_dirs': [ | 46 'include_dirs': [ |
47 '..', | 47 '..', |
48 ], | 48 ], |
49 'conditions': [ | 49 'conditions': [ |
50 ['os_posix==1 and OS!="mac"', { | 50 ['os_posix==1 and OS!="mac" and OS!="ios"', { |
51 'conditions': [ | 51 'conditions': [ |
52 ['linux_use_tcmalloc==1', { | 52 ['linux_use_tcmalloc==1', { |
53 'dependencies': [ | 53 'dependencies': [ |
54 '../base/allocator/allocator.gyp:allocator', | 54 '../base/allocator/allocator.gyp:allocator', |
55 ], | 55 ], |
56 }], | 56 }], |
57 ], | 57 ], |
58 }], | 58 }], |
59 ['OS == "android" and gtest_target_type == "shared_library"', { | 59 ['OS == "android" and gtest_target_type == "shared_library"', { |
60 'dependencies': [ | 60 'dependencies': [ |
(...skipping 19 matching lines...) Expand all Loading... |
80 'test_suite_name': 'sql_unittests', | 80 'test_suite_name': 'sql_unittests', |
81 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt
ests<(SHARED_LIB_SUFFIX)', | 81 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt
ests<(SHARED_LIB_SUFFIX)', |
82 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ]
, | 82 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ]
, |
83 }, | 83 }, |
84 'includes': [ '../build/apk_test.gypi' ], | 84 'includes': [ '../build/apk_test.gypi' ], |
85 }, | 85 }, |
86 ], | 86 ], |
87 }], | 87 }], |
88 ], | 88 ], |
89 } | 89 } |
OLD | NEW |