| 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 'conditions': [ | 6 'conditions': [ |
| 7 ['OS != "ios"', { | 7 ['OS != "ios"', { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'components_unittests', | 10 'target_name': 'components_unittests', |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 'dependencies': [ | 105 'dependencies': [ |
| 106 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 106 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 107 ], | 107 ], |
| 108 'link_settings': { | 108 'link_settings': { |
| 109 'ldflags': ['-rdynamic'], | 109 'ldflags': ['-rdynamic'], |
| 110 }, | 110 }, |
| 111 }], | 111 }], |
| 112 ['configuration_policy==1', { | 112 ['configuration_policy==1', { |
| 113 'sources': [ | 113 'sources': [ |
| 114 'policy/core/common/policy_schema_unittest.cc', | 114 'policy/core/common/policy_schema_unittest.cc', |
| 115 'policy/core/common/schema_unittest.cc', |
| 115 ], | 116 ], |
| 116 }], | 117 }], |
| 117 ], | 118 ], |
| 118 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 119 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 119 'msvs_disabled_warnings': [4267, ], | 120 'msvs_disabled_warnings': [4267, ], |
| 120 }, | 121 }, |
| 121 { | 122 { |
| 122 'target_name': 'components_perftests', | 123 'target_name': 'components_perftests', |
| 123 'type': '<(gtest_target_type)', | 124 'type': '<(gtest_target_type)', |
| 124 'dependencies': [ | 125 'dependencies': [ |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | 161 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', |
| 161 }, | 162 }, |
| 162 'includes': [ '../build/apk_test.gypi' ], | 163 'includes': [ '../build/apk_test.gypi' ], |
| 163 }, | 164 }, |
| 164 ], | 165 ], |
| 165 }], | 166 }], |
| 166 ], | 167 ], |
| 167 }], | 168 }], |
| 168 ], | 169 ], |
| 169 } | 170 } |
| OLD | NEW |