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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
282 '../components/autofill/browser/test_autofill_manager_delegate.h', | 282 '../components/autofill/browser/test_autofill_manager_delegate.h', |
283 | 283 |
284 '../ui/gfx/image/image_unittest_util.h', | 284 '../ui/gfx/image/image_unittest_util.h', |
285 '../ui/gfx/image/image_unittest_util.cc', | 285 '../ui/gfx/image/image_unittest_util.cc', |
286 '../webkit/quota/mock_quota_manager.cc', | 286 '../webkit/quota/mock_quota_manager.cc', |
287 '../webkit/quota/mock_quota_manager.h', | 287 '../webkit/quota/mock_quota_manager.h', |
288 ], | 288 ], |
289 'conditions': [ | 289 'conditions': [ |
290 ['OS!="ios"', { | 290 ['OS!="ios"', { |
291 'dependencies': [ | 291 'dependencies': [ |
292 'cloud_policy_proto', | |
grt (UTC plus 2)
2013/04/17 16:58:17
This dependency is required to build this target d
| |
292 'common/extensions/api/api.gyp:api', | 293 'common/extensions/api/api.gyp:api', |
293 'plugin', | 294 'plugin', |
294 'renderer', | 295 'renderer', |
295 'utility', | 296 'utility', |
296 '../content/content.gyp:content_gpu', | 297 '../content/content.gyp:content_gpu', |
297 '../content/content.gyp:content_plugin', | 298 '../content/content.gyp:content_plugin', |
298 '../content/content.gyp:content_ppapi_plugin', | 299 '../content/content.gyp:content_ppapi_plugin', |
299 '../content/content.gyp:content_renderer', | 300 '../content/content.gyp:content_renderer', |
300 '../content/content.gyp:content_utility', | 301 '../content/content.gyp:content_utility', |
301 '../content/content.gyp:content_worker', | 302 '../content/content.gyp:content_worker', |
302 '../ipc/ipc.gyp:test_support_ipc', | 303 '../ipc/ipc.gyp:test_support_ipc', |
303 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 304 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
304 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 305 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
305 '../ui/compositor/compositor.gyp:compositor_test_support', | 306 '../ui/compositor/compositor.gyp:compositor_test_support', |
307 '../ui/snapshot/snapshot.gyp:snapshot_test_support', | |
306 ], | 308 ], |
307 'export_dependent_settings': [ | 309 'export_dependent_settings': [ |
308 'renderer', | 310 'renderer', |
309 ], | 311 ], |
310 }, { # OS=="ios" | 312 }, { # OS=="ios" |
311 'sources/': [ | 313 'sources/': [ |
312 # Exclude everything but iOS-specific files. | 314 # Exclude everything but iOS-specific files. |
313 ['exclude', '\\.(cc|mm)$'], | 315 ['exclude', '\\.(cc|mm)$'], |
314 ['include', '_ios\\.(cc|mm)$'], | 316 ['include', '_ios\\.(cc|mm)$'], |
315 ['include', '(^|/)ios/'], | 317 ['include', '(^|/)ios/'], |
(...skipping 2102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2418 # more details. | 2420 # more details. |
2419 'DebugInformationFormat': '3', | 2421 'DebugInformationFormat': '3', |
2420 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2422 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
2421 }, | 2423 }, |
2422 }, | 2424 }, |
2423 }, | 2425 }, |
2424 ], | 2426 ], |
2425 }], | 2427 }], |
2426 ], # 'conditions' | 2428 ], # 'conditions' |
2427 } | 2429 } |
OLD | NEW |