| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
| 8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
| 9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 }], | 1030 }], |
| 1031 ], | 1031 ], |
| 1032 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1032 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 1033 'msvs_disabled_warnings': [4267, ], | 1033 'msvs_disabled_warnings': [4267, ], |
| 1034 }, | 1034 }, |
| 1035 ], | 1035 ], |
| 1036 }], | 1036 }], |
| 1037 ['OS != "ios" and android_webview_build == 0', { | 1037 ['OS != "ios" and android_webview_build == 0', { |
| 1038 'targets': [ | 1038 'targets': [ |
| 1039 { | 1039 { |
| 1040 # GN: //components:components_perftests |
| 1040 'target_name': 'components_perftests', | 1041 'target_name': 'components_perftests', |
| 1041 'type': '<(gtest_target_type)', | 1042 'type': '<(gtest_target_type)', |
| 1042 'dependencies': [ | 1043 'dependencies': [ |
| 1043 '../base/base.gyp:base', | 1044 '../base/base.gyp:base', |
| 1044 '../base/base.gyp:test_support_perf', | 1045 '../base/base.gyp:test_support_perf', |
| 1045 '../content/content_shell_and_tests.gyp:test_support_content', | 1046 '../content/content_shell_and_tests.gyp:test_support_content', |
| 1046 '../testing/gtest.gyp:gtest', | 1047 '../testing/gtest.gyp:gtest', |
| 1047 'components.gyp:visitedlink_browser', | 1048 'components.gyp:visitedlink_browser', |
| 1048 ], | 1049 ], |
| 1049 'include_dirs': [ | 1050 'include_dirs': [ |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1234 '../build/isolate.gypi', | 1235 '../build/isolate.gypi', |
| 1235 ], | 1236 ], |
| 1236 'sources': [ | 1237 'sources': [ |
| 1237 'components_unittests.isolate', | 1238 'components_unittests.isolate', |
| 1238 ], | 1239 ], |
| 1239 }, | 1240 }, |
| 1240 ], | 1241 ], |
| 1241 }], | 1242 }], |
| 1242 ], | 1243 ], |
| 1243 } | 1244 } |
| OLD | NEW |