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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 | 460 |
461 # Dependencies of url_fixer | 461 # Dependencies of url_fixer |
462 'components.gyp:url_fixer', | 462 'components.gyp:url_fixer', |
463 '../url/url.gyp:url_lib', | 463 '../url/url.gyp:url_lib', |
464 | 464 |
465 # Dependencies of variations | 465 # Dependencies of variations |
466 'components.gyp:variations', | 466 'components.gyp:variations', |
467 'components.gyp:variations_http_provider', | 467 'components.gyp:variations_http_provider', |
468 ], | 468 ], |
469 'conditions': [ | 469 'conditions': [ |
| 470 ['chromeos == 1', { |
| 471 'sources': [ |
| 472 'wifi_sync/wifi_security_class_chromeos_unittest.cc', |
| 473 ], |
| 474 'dependencies': [ |
| 475 'components.gyp:wifi_sync', |
| 476 ] |
| 477 }], |
470 ['toolkit_views == 1', { | 478 ['toolkit_views == 1', { |
471 'sources': [ | 479 'sources': [ |
472 'bookmarks/browser/bookmark_node_data_unittest.cc', | 480 'bookmarks/browser/bookmark_node_data_unittest.cc', |
473 'constrained_window/constrained_window_views_unittest.cc', | 481 'constrained_window/constrained_window_views_unittest.cc', |
474 ], | 482 ], |
475 'dependencies': [ | 483 'dependencies': [ |
476 '<(DEPTH)/ui/views/views.gyp:views_test_support', | 484 '<(DEPTH)/ui/views/views.gyp:views_test_support', |
477 'components.gyp:constrained_window', | 485 'components.gyp:constrained_window', |
478 ] | 486 ] |
479 }], | 487 }], |
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1023 'dependencies': [ | 1031 'dependencies': [ |
1024 '../base/allocator/allocator.gyp:allocator', | 1032 '../base/allocator/allocator.gyp:allocator', |
1025 ], | 1033 ], |
1026 }], | 1034 }], |
1027 ], | 1035 ], |
1028 }, | 1036 }, |
1029 ], | 1037 ], |
1030 }], | 1038 }], |
1031 ], | 1039 ], |
1032 } | 1040 } |
OLD | NEW |