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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| 11 'base.gypi', | 11 'base.gypi', |
| 12 'test/android/native_test.gyp' | |
|
Satish
2012/03/27 13:53:24
should this file have a ".gypi" extension?
| |
| 12 ], | 13 ], |
| 13 'targets': [ | 14 'targets': [ |
| 14 { | 15 { |
| 15 'target_name': 'base_i18n', | 16 'target_name': 'base_i18n', |
| 16 'type': '<(component)', | 17 'type': '<(component)', |
| 17 'variables': { | 18 'variables': { |
| 18 'enable_wexit_time_destructors': 1, | 19 'enable_wexit_time_destructors': 1, |
| 19 'optimize': 'max', | 20 'optimize': 'max', |
| 20 }, | 21 }, |
| 21 'dependencies': [ | 22 'dependencies': [ |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 146 'type': 'static_library', | 147 'type': 'static_library', |
| 147 'dependencies': [ | 148 'dependencies': [ |
| 148 'test_support_base', | 149 'test_support_base', |
| 149 ], | 150 ], |
| 150 'sources': [ | 151 'sources': [ |
| 151 'test/run_all_unittests.cc', | 152 'test/run_all_unittests.cc', |
| 152 ], | 153 ], |
| 153 }, | 154 }, |
| 154 { | 155 { |
| 155 'target_name': 'base_unittests', | 156 'target_name': 'base_unittests', |
| 156 'type': 'executable', | 157 'type': '<(gtest_target_type)', |
| 157 'sources': [ | 158 'sources': [ |
| 158 # Tests. | 159 # Tests. |
| 159 'android/jni_android_unittest.cc', | 160 'android/jni_android_unittest.cc', |
| 160 'android/scoped_java_ref_unittest.cc', | 161 'android/scoped_java_ref_unittest.cc', |
| 161 'at_exit_unittest.cc', | 162 'at_exit_unittest.cc', |
| 162 'atomicops_unittest.cc', | 163 'atomicops_unittest.cc', |
| 163 'base64_unittest.cc', | 164 'base64_unittest.cc', |
| 164 'bind_helpers_unittest.cc', | 165 'bind_helpers_unittest.cc', |
| 165 'bind_unittest.cc', | 166 'bind_unittest.cc', |
| 166 'bind_unittest.nc', | 167 'bind_unittest.nc', |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 649 # treated as weak imports in dependents, who still must | 650 # treated as weak imports in dependents, who still must |
| 650 # #include closure_blocks_leopard_compat.h to get weak imports. | 651 # #include closure_blocks_leopard_compat.h to get weak imports. |
| 651 'type': 'none', | 652 'type': 'none', |
| 652 }], | 653 }], |
| 653 ], | 654 ], |
| 654 }, | 655 }, |
| 655 ], | 656 ], |
| 656 }], | 657 }], |
| 657 ], | 658 ], |
| 658 } | 659 } |
| OLD | NEW |