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 # 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 ['include', '^translate'], | 127 ['include', '^translate'], |
128 ], | 128 ], |
129 'dependencies!': [ | 129 'dependencies!': [ |
130 'autofill_core_common', | 130 'autofill_core_common', |
131 'navigation_interception', | 131 'navigation_interception', |
132 'visitedlink_renderer', | 132 'visitedlink_renderer', |
133 ], | 133 ], |
134 }], | 134 }], |
135 ['disable_nacl==0', { | 135 ['disable_nacl==0', { |
136 'sources': [ | 136 'sources': [ |
| 137 'nacl/browser/nacl_file_host_unittest.cc', |
| 138 'nacl/browser/nacl_process_host_unittest.cc', |
137 'nacl/browser/nacl_validation_cache_unittest.cc', | 139 'nacl/browser/nacl_validation_cache_unittest.cc', |
| 140 'nacl/browser/pnacl_host_unittest.cc', |
138 'nacl/browser/pnacl_translation_cache_unittest.cc', | 141 'nacl/browser/pnacl_translation_cache_unittest.cc', |
| 142 'nacl/browser/test_nacl_browser_delegate.cc', |
139 ], | 143 ], |
140 'dependencies': [ | 144 'dependencies': [ |
141 'nacl.gyp:nacl_browser', | 145 'nacl.gyp:nacl_browser', |
142 'nacl_common.gyp:nacl_common', | 146 'nacl_common.gyp:nacl_common', |
143 ], | 147 ], |
144 }], | 148 }], |
145 ['OS == "android"', { | 149 ['OS == "android"', { |
146 'sources!': [ | 150 'sources!': [ |
147 'web_modal/web_contents_modal_dialog_manager_unittest.cc', | 151 'web_modal/web_contents_modal_dialog_manager_unittest.cc', |
148 ], | 152 ], |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 'dependencies': [ | 297 'dependencies': [ |
294 '../base/allocator/allocator.gyp:allocator', | 298 '../base/allocator/allocator.gyp:allocator', |
295 ], | 299 ], |
296 }], | 300 }], |
297 ], | 301 ], |
298 }, | 302 }, |
299 ], | 303 ], |
300 }], | 304 }], |
301 ], | 305 ], |
302 } | 306 } |
OLD | NEW |