| 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 '../third_party/bzip2/bzip2.gyp:bzip2', | 407 '../third_party/bzip2/bzip2.gyp:bzip2', |
| 408 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 408 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
| 409 '../third_party/icu/icu.gyp:icui18n', | 409 '../third_party/icu/icu.gyp:icui18n', |
| 410 '../third_party/icu/icu.gyp:icuuc', | 410 '../third_party/icu/icu.gyp:icuuc', |
| 411 '../third_party/libxml/libxml.gyp:libxml', | 411 '../third_party/libxml/libxml.gyp:libxml', |
| 412 '../ui/ui.gyp:ui_resources', | 412 '../ui/ui.gyp:ui_resources', |
| 413 '../ui/ui.gyp:ui_test_support', | 413 '../ui/ui.gyp:ui_test_support', |
| 414 'chrome_resources.gyp:chrome_resources', | 414 'chrome_resources.gyp:chrome_resources', |
| 415 'chrome_resources.gyp:chrome_strings', | 415 'chrome_resources.gyp:chrome_strings', |
| 416 ], | 416 ], |
| 417 # TODO(joi): Remove this section once the google_apis tests are |
| 418 # a separate unit test binary. |
| 419 'includes': [ |
| 420 '../google_apis/determine_use_official_keys.gypi', |
| 421 ], |
| 417 'include_dirs': [ | 422 'include_dirs': [ |
| 418 '..', | 423 '..', |
| 419 ], | 424 ], |
| 420 'defines': [ | 425 'defines': [ |
| 421 'CLD_WINDOWS', | 426 'CLD_WINDOWS', |
| 422 ], | 427 ], |
| 423 'direct_dependent_settings': { | 428 'direct_dependent_settings': { |
| 424 'defines': [ | 429 'defines': [ |
| 425 'CLD_WINDOWS', | 430 'CLD_WINDOWS', |
| 426 ], | 431 ], |
| (...skipping 1834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2261 'common/net/x509_certificate_model_unittest.cc', | 2266 'common/net/x509_certificate_model_unittest.cc', |
| 2262 ], | 2267 ], |
| 2263 }], | 2268 }], |
| 2264 ['use_openssl==1', { | 2269 ['use_openssl==1', { |
| 2265 'sources/': [ | 2270 'sources/': [ |
| 2266 # OpenSSL build does not support firefox importer. See | 2271 # OpenSSL build does not support firefox importer. See |
| 2267 # http://crbug.com/64926 | 2272 # http://crbug.com/64926 |
| 2268 ['exclude', '^browser/importer/'], | 2273 ['exclude', '^browser/importer/'], |
| 2269 ], | 2274 ], |
| 2270 }], | 2275 }], |
| 2271 # TODO(joi): Remove from this file once separate | |
| 2272 # google_apis_unittests target is established. | |
| 2273 ['use_official_google_api_keys==1', { | |
| 2274 'defines': ['USE_OFFICIAL_GOOGLE_API_KEYS=1'], | |
| 2275 }], | |
| 2276 ['enable_managed_users!=1', { | 2276 ['enable_managed_users!=1', { |
| 2277 'sources/': [ | 2277 'sources/': [ |
| 2278 ['exclude', '^browser/managed_mode/'], | 2278 ['exclude', '^browser/managed_mode/'], |
| 2279 ], | 2279 ], |
| 2280 }], | 2280 }], |
| 2281 ['safe_browsing!=1', { | 2281 ['safe_browsing!=1', { |
| 2282 'sources/': [ | 2282 'sources/': [ |
| 2283 ['exclude', '^browser/extensions/blacklist_unittest.cc'], | 2283 ['exclude', '^browser/extensions/blacklist_unittest.cc'], |
| 2284 ], | 2284 ], |
| 2285 }], | 2285 }], |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2392 # more details. | 2392 # more details. |
| 2393 'DebugInformationFormat': '3', | 2393 'DebugInformationFormat': '3', |
| 2394 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2394 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
| 2395 }, | 2395 }, |
| 2396 }, | 2396 }, |
| 2397 }, | 2397 }, |
| 2398 ], | 2398 ], |
| 2399 }], | 2399 }], |
| 2400 ], # 'conditions' | 2400 ], # 'conditions' |
| 2401 } | 2401 } |
| OLD | NEW |