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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 | 459 |
460 # Dependencies of url_fixer | 460 # Dependencies of url_fixer |
461 'components.gyp:url_fixer', | 461 'components.gyp:url_fixer', |
462 '../url/url.gyp:url_lib', | 462 '../url/url.gyp:url_lib', |
463 | 463 |
464 # Dependencies of variations | 464 # Dependencies of variations |
465 'components.gyp:variations', | 465 'components.gyp:variations', |
466 'components.gyp:variations_http_provider', | 466 'components.gyp:variations_http_provider', |
467 ], | 467 ], |
468 'conditions': [ | 468 'conditions': [ |
| 469 ['chromeos == 1', { |
| 470 'sources': [ |
| 471 'wifi_sync/wifi_security_class_chromeos_unittest.cc', |
| 472 ], |
| 473 'dependencies': [ |
| 474 'components.gyp:wifi_sync', |
| 475 ] |
| 476 }], |
469 ['toolkit_views == 1', { | 477 ['toolkit_views == 1', { |
470 'sources': [ | 478 'sources': [ |
471 'bookmarks/browser/bookmark_node_data_unittest.cc', | 479 'bookmarks/browser/bookmark_node_data_unittest.cc', |
472 'constrained_window/constrained_window_views_unittest.cc', | 480 'constrained_window/constrained_window_views_unittest.cc', |
473 ], | 481 ], |
474 'dependencies': [ | 482 'dependencies': [ |
475 '<(DEPTH)/ui/views/views.gyp:views_test_support', | 483 '<(DEPTH)/ui/views/views.gyp:views_test_support', |
476 'components.gyp:constrained_window', | 484 'components.gyp:constrained_window', |
477 ] | 485 ] |
478 }], | 486 }], |
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1009 'dependencies': [ | 1017 'dependencies': [ |
1010 '../base/allocator/allocator.gyp:allocator', | 1018 '../base/allocator/allocator.gyp:allocator', |
1011 ], | 1019 ], |
1012 }], | 1020 }], |
1013 ], | 1021 ], |
1014 }, | 1022 }, |
1015 ], | 1023 ], |
1016 }], | 1024 }], |
1017 ], | 1025 ], |
1018 } | 1026 } |
OLD | NEW |