| 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 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 974 'password_manager/content/renderer/credential_manager_client_browser
test.cc', | 974 'password_manager/content/renderer/credential_manager_client_browser
test.cc', |
| 975 ], | 975 ], |
| 976 'conditions': [ | 976 'conditions': [ |
| 977 ['OS == "android"', { | 977 ['OS == "android"', { |
| 978 'sources!': [ | 978 'sources!': [ |
| 979 'autofill/content/browser/risk/fingerprint_browsertest.cc', | 979 'autofill/content/browser/risk/fingerprint_browsertest.cc', |
| 980 ], | 980 ], |
| 981 }], | 981 }], |
| 982 ['OS == "linux"', { | 982 ['OS == "linux"', { |
| 983 'sources': [ | 983 'sources': [ |
| 984 # content_extractor is a standalone content extraction tool bu
ilt as | 984 # content_extractor_browsertest is a standalone content extrac
tion tool built as |
| 985 # a MANUAL component_browsertest. | 985 # a MANUAL component_browsertest. |
| 986 'dom_distiller/standalone/content_extractor.cc', | 986 'dom_distiller/standalone/content_extractor_browsertest.cc', |
| 987 ], | 987 ], |
| 988 }], | 988 }], |
| 989 ['OS=="win"', { | 989 ['OS=="win"', { |
| 990 'resource_include_dirs': [ | 990 'resource_include_dirs': [ |
| 991 '<(SHARED_INTERMEDIATE_DIR)/content/app/resources', | 991 '<(SHARED_INTERMEDIATE_DIR)/content/app/resources', |
| 992 ], | 992 ], |
| 993 'sources': [ | 993 'sources': [ |
| 994 '../content/shell/app/resource.h', | 994 '../content/shell/app/resource.h', |
| 995 '../content/shell/app/shell.rc', | 995 '../content/shell/app/shell.rc', |
| 996 # TODO: It would be nice to have these pulled in | 996 # TODO: It would be nice to have these pulled in |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1056 '../build/isolate.gypi', | 1056 '../build/isolate.gypi', |
| 1057 ], | 1057 ], |
| 1058 'sources': [ | 1058 'sources': [ |
| 1059 'components_unittests.isolate', | 1059 'components_unittests.isolate', |
| 1060 ], | 1060 ], |
| 1061 }, | 1061 }, |
| 1062 ], | 1062 ], |
| 1063 }], | 1063 }], |
| 1064 ], | 1064 ], |
| 1065 } | 1065 } |
| OLD | NEW |