OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 # Dependencies of web_modal | 237 # Dependencies of web_modal |
238 'components.gyp:web_modal', | 238 'components.gyp:web_modal', |
239 'components.gyp:web_modal_test_support', | 239 'components.gyp:web_modal_test_support', |
240 ], | 240 ], |
241 }, { # 'OS == "ios"' | 241 }, { # 'OS == "ios"' |
242 'includes': ['../chrome/chrome_ios_bundle_resources.gypi'], | 242 'includes': ['../chrome/chrome_ios_bundle_resources.gypi'], |
243 'sources/': [ | 243 'sources/': [ |
244 ['exclude', '\\.cc$'], | 244 ['exclude', '\\.cc$'], |
245 ['exclude', '\\.mm$'], | 245 ['exclude', '\\.mm$'], |
246 ['include', '^test/run_all_unittests\\.cc$'], | 246 ['include', '^test/run_all_unittests\\.cc$'], |
247 # TODO(ios): Include files here as they are made to work, see | |
248 # http://crbug.com/303011. | |
249 # TODO(asvitkine): Bring up variations/ unittests on iOS. | 247 # TODO(asvitkine): Bring up variations/ unittests on iOS. |
250 # TODO(blundell): Bring up json_schema/ unittests on iOS. | |
251 ['include', '^auto_login_parser/'], | 248 ['include', '^auto_login_parser/'], |
252 ['include', '^autofill/'], | 249 ['include', '^autofill/'], |
253 ['include', '^dom_distiller/'], | 250 ['include', '^dom_distiller/'], |
| 251 ['include', '^json_schema/'], |
254 ['include', '^language_usage_metrics/'], | 252 ['include', '^language_usage_metrics/'], |
255 ['include', '^password_manager/'], | 253 ['include', '^password_manager/'], |
256 ['include', '^precache/core/'], | 254 ['include', '^precache/core/'], |
257 ['include', '^signin/'], | 255 ['include', '^signin/'], |
258 ['include', '^sync_driver/'], | 256 ['include', '^sync_driver/'], |
259 ['include', '^translate/'], | 257 ['include', '^translate/'], |
260 ], | 258 ], |
261 'actions': [ | 259 'actions': [ |
262 { | 260 { |
263 'action_name': 'copy_test_data', | 261 'action_name': 'copy_test_data', |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 'dependencies': [ | 557 'dependencies': [ |
560 '../base/allocator/allocator.gyp:allocator', | 558 '../base/allocator/allocator.gyp:allocator', |
561 ], | 559 ], |
562 }], | 560 }], |
563 ], | 561 ], |
564 }, | 562 }, |
565 ], | 563 ], |
566 }], | 564 }], |
567 ], | 565 ], |
568 } | 566 } |
OLD | NEW |