| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 '../components/autofill/browser/test_personal_data_manager.h', | 284 '../components/autofill/browser/test_personal_data_manager.h', |
| 285 | 285 |
| 286 '../ui/gfx/image/image_unittest_util.h', | 286 '../ui/gfx/image/image_unittest_util.h', |
| 287 '../ui/gfx/image/image_unittest_util.cc', | 287 '../ui/gfx/image/image_unittest_util.cc', |
| 288 '../webkit/quota/mock_quota_manager.cc', | 288 '../webkit/quota/mock_quota_manager.cc', |
| 289 '../webkit/quota/mock_quota_manager.h', | 289 '../webkit/quota/mock_quota_manager.h', |
| 290 ], | 290 ], |
| 291 'conditions': [ | 291 'conditions': [ |
| 292 ['OS!="ios"', { | 292 ['OS!="ios"', { |
| 293 'dependencies': [ | 293 'dependencies': [ |
| 294 'cloud_policy_proto', |
| 294 'common/extensions/api/api.gyp:api', | 295 'common/extensions/api/api.gyp:api', |
| 295 'plugin', | 296 'plugin', |
| 296 'renderer', | 297 'renderer', |
| 297 'utility', | 298 'utility', |
| 298 '../content/content.gyp:content_gpu', | 299 '../content/content.gyp:content_gpu', |
| 299 '../content/content.gyp:content_plugin', | 300 '../content/content.gyp:content_plugin', |
| 300 '../content/content.gyp:content_ppapi_plugin', | 301 '../content/content.gyp:content_ppapi_plugin', |
| 301 '../content/content.gyp:content_renderer', | 302 '../content/content.gyp:content_renderer', |
| 302 '../content/content.gyp:content_utility', | 303 '../content/content.gyp:content_utility', |
| 303 '../content/content.gyp:content_worker', | 304 '../content/content.gyp:content_worker', |
| 304 '../ipc/ipc.gyp:test_support_ipc', | 305 '../ipc/ipc.gyp:test_support_ipc', |
| 305 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 306 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
| 306 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 307 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 307 '../ui/compositor/compositor.gyp:compositor_test_support', | 308 '../ui/compositor/compositor.gyp:compositor_test_support', |
| 309 '../ui/snapshot/snapshot.gyp:snapshot_test_support', |
| 308 ], | 310 ], |
| 309 'export_dependent_settings': [ | 311 'export_dependent_settings': [ |
| 310 'renderer', | 312 'renderer', |
| 311 ], | 313 ], |
| 312 }, { # OS=="ios" | 314 }, { # OS=="ios" |
| 313 'sources/': [ | 315 'sources/': [ |
| 314 # Exclude everything but iOS-specific files. | 316 # Exclude everything but iOS-specific files. |
| 315 ['exclude', '\\.(cc|mm)$'], | 317 ['exclude', '\\.(cc|mm)$'], |
| 316 ['include', '_ios\\.(cc|mm)$'], | 318 ['include', '_ios\\.(cc|mm)$'], |
| 317 ['include', '(^|/)ios/'], | 319 ['include', '(^|/)ios/'], |
| (...skipping 2125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2443 # more details. | 2445 # more details. |
| 2444 'DebugInformationFormat': '3', | 2446 'DebugInformationFormat': '3', |
| 2445 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2447 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
| 2446 }, | 2448 }, |
| 2447 }, | 2449 }, |
| 2448 }, | 2450 }, |
| 2449 ], | 2451 ], |
| 2450 }], | 2452 }], |
| 2451 ], # 'conditions' | 2453 ], # 'conditions' |
| 2452 } | 2454 } |
| OLD | NEW |