| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { | 367 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { |
| 368 'dependencies': [ | 368 'dependencies': [ |
| 369 '../sandbox/sandbox.gyp:sandbox', | 369 '../sandbox/sandbox.gyp:sandbox', |
| 370 ], | 370 ], |
| 371 }], | 371 }], |
| 372 ['use_aura==1', { | 372 ['use_aura==1', { |
| 373 'dependencies': [ | 373 'dependencies': [ |
| 374 '../ui/aura/aura.gyp:aura', | 374 '../ui/aura/aura.gyp:aura', |
| 375 ], | 375 ], |
| 376 }], | 376 }], |
| 377 ['OS == "android"', { |
| 378 'sources!': [ |
| 379 'browser/geolocation/device_data_provider_unittest.cc', |
| 380 'browser/geolocation/gps_location_provider_unittest_linux.cc', |
| 381 'browser/geolocation/network_location_provider_unittest.cc', |
| 382 'browser/geolocation/wifi_data_provider_common_unittest.cc', |
| 383 'browser/geolocation/wifi_data_provider_linux_unittest.cc', |
| 384 ], |
| 385 }], |
| 377 ], | 386 ], |
| 378 }, | 387 }, |
| 379 { | 388 { |
| 380 'target_name': 'content_browsertests', | 389 'target_name': 'content_browsertests', |
| 381 'type': 'executable', | 390 'type': 'executable', |
| 382 'defines!': ['CONTENT_IMPLEMENTATION'], | 391 'defines!': ['CONTENT_IMPLEMENTATION'], |
| 383 'dependencies': [ | 392 'dependencies': [ |
| 384 'content_browser', | 393 'content_browser', |
| 385 'content_gpu', | 394 'content_gpu', |
| 386 'content_plugin', | 395 'content_plugin', |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 ], | 504 ], |
| 496 'sources': [ | 505 'sources': [ |
| 497 'common/gpu/media/video_decode_accelerator_unittest.cc', | 506 'common/gpu/media/video_decode_accelerator_unittest.cc', |
| 498 ], | 507 ], |
| 499 } | 508 } |
| 500 ], | 509 ], |
| 501 }, | 510 }, |
| 502 ], | 511 ], |
| 503 ], | 512 ], |
| 504 } | 513 } |
| OLD | NEW |