Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: content/content_tests.gypi

Issue 10209003: Upstream Android Geolocation (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address Yaron's concerns. Still need to resolve Java locations. Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { 366 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', {
367 'dependencies': [ 367 'dependencies': [
368 '../sandbox/sandbox.gyp:sandbox', 368 '../sandbox/sandbox.gyp:sandbox',
369 ], 369 ],
370 }], 370 }],
371 ['use_aura==1', { 371 ['use_aura==1', {
372 'dependencies': [ 372 'dependencies': [
373 '../ui/aura/aura.gyp:aura', 373 '../ui/aura/aura.gyp:aura',
374 ], 374 ],
375 }], 375 }],
376 ['OS == "android"', {
377 'sources!': [
378 'browser/geolocation/device_data_provider_unittest.cc',
379 'browser/geolocation/gps_location_provider_unittest_linux.cc',
380 'browser/geolocation/network_location_provider_unittest.cc',
381 'browser/geolocation/wifi_data_provider_common_unittest.cc',
382 'browser/geolocation/wifi_data_provider_linux_unittest.cc',
383 ],
384 }],
376 ], 385 ],
377 }, 386 },
378 { 387 {
379 'target_name': 'content_browsertests', 388 'target_name': 'content_browsertests',
380 'type': 'executable', 389 'type': 'executable',
381 'defines!': ['CONTENT_IMPLEMENTATION'], 390 'defines!': ['CONTENT_IMPLEMENTATION'],
382 'dependencies': [ 391 'dependencies': [
383 'content_browser', 392 'content_browser',
384 'content_gpu', 393 'content_gpu',
385 'content_plugin', 394 'content_plugin',
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 ], 503 ],
495 'sources': [ 504 'sources': [
496 'common/gpu/media/video_decode_accelerator_unittest.cc', 505 'common/gpu/media/video_decode_accelerator_unittest.cc',
497 ], 506 ],
498 } 507 }
499 ], 508 ],
500 }, 509 },
501 ], 510 ],
502 ], 511 ],
503 } 512 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698