| 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 'variations/active_field_trials_unittest.cc', | 237 'variations/active_field_trials_unittest.cc', |
| 238 'variations/caching_permuted_entropy_provider_unittest.cc', | 238 'variations/caching_permuted_entropy_provider_unittest.cc', |
| 239 'variations/entropy_provider_unittest.cc', | 239 'variations/entropy_provider_unittest.cc', |
| 240 'variations/metrics_util_unittest.cc', | 240 'variations/metrics_util_unittest.cc', |
| 241 'variations/study_filtering_unittest.cc', | 241 'variations/study_filtering_unittest.cc', |
| 242 'variations/variations_associated_data_unittest.cc', | 242 'variations/variations_associated_data_unittest.cc', |
| 243 'variations/variations_http_header_provider_unittest.cc', | 243 'variations/variations_http_header_provider_unittest.cc', |
| 244 'variations/variations_seed_processor_unittest.cc', | 244 'variations/variations_seed_processor_unittest.cc', |
| 245 'variations/variations_seed_simulator_unittest.cc', | 245 'variations/variations_seed_simulator_unittest.cc', |
| 246 'visitedlink/test/visitedlink_unittest.cc', | 246 'visitedlink/test/visitedlink_unittest.cc', |
| 247 'web_cache/browser/web_cache_manager_unittest.cc', |
| 247 'web_modal/web_contents_modal_dialog_manager_unittest.cc', | 248 'web_modal/web_contents_modal_dialog_manager_unittest.cc', |
| 248 'webdata/common/web_database_migration_unittest.cc', | 249 'webdata/common/web_database_migration_unittest.cc', |
| 249 ], | 250 ], |
| 250 'include_dirs': [ | 251 'include_dirs': [ |
| 251 '..', | 252 '..', |
| 252 ], | 253 ], |
| 253 'dependencies': [ | 254 'dependencies': [ |
| 254 '../base/base.gyp:base_prefs_test_support', | 255 '../base/base.gyp:base_prefs_test_support', |
| 255 '../base/base.gyp:test_support_base', | 256 '../base/base.gyp:test_support_base', |
| 256 # TODO(blundell): Eliminate this dependency by having | 257 # TODO(blundell): Eliminate this dependency by having |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 'components.gyp:storage_monitor', | 476 'components.gyp:storage_monitor', |
| 476 'components.gyp:storage_monitor_test_support', | 477 'components.gyp:storage_monitor_test_support', |
| 477 | 478 |
| 478 # Dependencies of url_matcher. | 479 # Dependencies of url_matcher. |
| 479 'components.gyp:url_matcher', | 480 'components.gyp:url_matcher', |
| 480 | 481 |
| 481 # Dependencies of visitedlink | 482 # Dependencies of visitedlink |
| 482 'components.gyp:visitedlink_browser', | 483 'components.gyp:visitedlink_browser', |
| 483 'components.gyp:visitedlink_renderer', | 484 'components.gyp:visitedlink_renderer', |
| 484 | 485 |
| 486 # Dependencies of web_cache |
| 487 'components.gyp:web_cache_browser', |
| 488 |
| 485 # Dependencies of web_modal | 489 # Dependencies of web_modal |
| 486 'components.gyp:web_modal', | 490 'components.gyp:web_modal', |
| 487 'components.gyp:web_modal_test_support', | 491 'components.gyp:web_modal_test_support', |
| 488 ], | 492 ], |
| 489 }, { # 'OS == "ios"' | 493 }, { # 'OS == "ios"' |
| 490 'includes': ['../chrome/chrome_ios_bundle_resources.gypi'], | 494 'includes': ['../chrome/chrome_ios_bundle_resources.gypi'], |
| 491 'sources/': [ | 495 'sources/': [ |
| 492 ['exclude', '\\.cc$'], | 496 ['exclude', '\\.cc$'], |
| 493 ['exclude', '\\.mm$'], | 497 ['exclude', '\\.mm$'], |
| 494 ['include', '^test/run_all_unittests\\.cc$'], | 498 ['include', '^test/run_all_unittests\\.cc$'], |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 'dependencies': [ | 931 'dependencies': [ |
| 928 '../base/allocator/allocator.gyp:allocator', | 932 '../base/allocator/allocator.gyp:allocator', |
| 929 ], | 933 ], |
| 930 }], | 934 }], |
| 931 ], | 935 ], |
| 932 }, | 936 }, |
| 933 ], | 937 ], |
| 934 }], | 938 }], |
| 935 ], | 939 ], |
| 936 } | 940 } |
| OLD | NEW |