| 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 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 # This target contains mocks and test utilities that don't belong in | 7 # This target contains mocks and test utilities that don't belong in |
| 8 # production libraries but are used by more than one test executable. | 8 # production libraries but are used by more than one test executable. |
| 9 'target_name': 'test_support_common', | 9 'target_name': 'test_support_common', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 'test/base/test_launcher_utils.cc', | 231 'test/base/test_launcher_utils.cc', |
| 232 'test/base/test_launcher_utils.h', | 232 'test/base/test_launcher_utils.h', |
| 233 'test/base/test_location_bar.cc', | 233 'test/base/test_location_bar.cc', |
| 234 'test/base/test_location_bar.h', | 234 'test/base/test_location_bar.h', |
| 235 'test/base/test_tab_strip_model_observer.cc', | 235 'test/base/test_tab_strip_model_observer.cc', |
| 236 'test/base/test_tab_strip_model_observer.h', | 236 'test/base/test_tab_strip_model_observer.h', |
| 237 'test/base/testing_browser_process.cc', | 237 'test/base/testing_browser_process.cc', |
| 238 'test/base/testing_browser_process.h', | 238 'test/base/testing_browser_process.h', |
| 239 'test/base/testing_browser_process_platform_part.h', | 239 'test/base/testing_browser_process_platform_part.h', |
| 240 'test/base/testing_browser_process_platform_part.cc', | 240 'test/base/testing_browser_process_platform_part.cc', |
| 241 'test/base/testing_browser_process_platform_part_chromeos.h', | |
| 242 'test/base/testing_browser_process_platform_part_chromeos.cc', | |
| 243 'test/base/testing_pref_service_syncable.cc', | 241 'test/base/testing_pref_service_syncable.cc', |
| 244 'test/base/testing_pref_service_syncable.h', | 242 'test/base/testing_pref_service_syncable.h', |
| 245 'test/base/testing_profile.cc', | 243 'test/base/testing_profile.cc', |
| 246 'test/base/testing_profile.h', | 244 'test/base/testing_profile.h', |
| 247 'test/base/testing_profile_manager.cc', | 245 'test/base/testing_profile_manager.cc', |
| 248 'test/base/testing_profile_manager.h', | 246 'test/base/testing_profile_manager.h', |
| 249 'test/base/tracing.cc', | 247 'test/base/tracing.cc', |
| 250 'test/base/tracing.h', | 248 'test/base/tracing.h', |
| 251 'test/base/ui_test_utils.cc', | 249 'test/base/ui_test_utils.cc', |
| 252 'test/base/ui_test_utils.h', | 250 'test/base/ui_test_utils.h', |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 }], | 318 }], |
| 321 ['chromeos==0', { | 319 ['chromeos==0', { |
| 322 'sources/': [ | 320 'sources/': [ |
| 323 ['exclude', '^browser/chromeos'], | 321 ['exclude', '^browser/chromeos'], |
| 324 ], | 322 ], |
| 325 }, { # chromeos==1 | 323 }, { # chromeos==1 |
| 326 'dependencies': [ | 324 'dependencies': [ |
| 327 '../build/linux/system.gyp:dbus', | 325 '../build/linux/system.gyp:dbus', |
| 328 '../chromeos/chromeos.gyp:chromeos_test_support', | 326 '../chromeos/chromeos.gyp:chromeos_test_support', |
| 329 ], | 327 ], |
| 330 'sources/': [ | |
| 331 ['exclude', '^test/base/testing_browser_process_platform_part\\.cc$'
], | |
| 332 ['exclude', '^test/base/testing_browser_process_platform_part\\.h$']
, | |
| 333 ], | |
| 334 }], | 328 }], |
| 335 ['configuration_policy==0', { | 329 ['configuration_policy==0', { |
| 336 'sources/': [ | 330 'sources/': [ |
| 337 ['exclude', '^browser/policy'], | 331 ['exclude', '^browser/policy'], |
| 338 ], | 332 ], |
| 339 }], | 333 }], |
| 340 ['safe_browsing!=1', { | 334 ['safe_browsing!=1', { |
| 341 'sources/': [ | 335 'sources/': [ |
| 342 ['exclude', '^browser/extensions/blacklist_unittest.cc'], | 336 ['exclude', '^browser/extensions/blacklist_unittest.cc'], |
| 343 ['exclude', '^browser/extensions/fake_safe_browsing_database_manager
.cc'], | 337 ['exclude', '^browser/extensions/fake_safe_browsing_database_manager
.cc'], |
| (...skipping 2177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2521 # more details. | 2515 # more details. |
| 2522 'DebugInformationFormat': '3', | 2516 'DebugInformationFormat': '3', |
| 2523 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2517 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
| 2524 }, | 2518 }, |
| 2525 }, | 2519 }, |
| 2526 }, | 2520 }, |
| 2527 ], | 2521 ], |
| 2528 }], | 2522 }], |
| 2529 ], # 'conditions' | 2523 ], # 'conditions' |
| 2530 } | 2524 } |
| OLD | NEW |