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

Side by Side Diff: sync/sync_tests.gypi

Issue 862113005: Create a Android Sync integration test for typed URLs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # Test support files for the 'sync_core' target. 7 # Test support files for the 'sync_core' target.
8 # GN version: //sync:test_support_sync_core 8 # GN version: //sync:test_support_sync_core
9 { 9 {
10 'target_name': 'test_support_sync_core', 10 'target_name': 'test_support_sync_core',
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 }, 468 },
469 'includes': [ '../build/jni_generator.gypi' ], 469 'includes': [ '../build/jni_generator.gypi' ],
470 }, 470 },
471 { 471 {
472 # GN: //sync:test_support_sync_fake_server_android 472 # GN: //sync:test_support_sync_fake_server_android
473 'target_name': 'test_support_sync_fake_server_android', 473 'target_name': 'test_support_sync_fake_server_android',
474 'type': 'static_library', 474 'type': 'static_library',
475 'dependencies': [ 475 'dependencies': [
476 'sync_fake_server_jni_headers', 476 'sync_fake_server_jni_headers',
477 'test_support_sync_fake_server', 477 'test_support_sync_fake_server',
478 '../testing/gtest.gyp:gtest',
478 '../base/base.gyp:base', 479 '../base/base.gyp:base',
479 ], 480 ],
480 'sources': [ 481 'sources': [
481 'test/fake_server/android/fake_server_helper_android.cc', 482 'test/fake_server/android/fake_server_helper_android.cc',
482 'test/fake_server/android/fake_server_helper_android.h', 483 'test/fake_server/android/fake_server_helper_android.h',
483 ], 484 ],
484 }, 485 },
485 { 486 {
486 # GN: //sync:sync_unit_tests_apk 487 # GN: //sync:sync_unit_tests_apk
487 'target_name': 'sync_unit_tests_apk', 488 'target_name': 'sync_unit_tests_apk',
488 'type': 'none', 489 'type': 'none',
489 'dependencies': [ 490 'dependencies': [
490 'sync_unit_tests', 491 'sync_unit_tests',
491 ], 492 ],
492 'variables': { 493 'variables': {
493 'test_suite_name': 'sync_unit_tests', 494 'test_suite_name': 'sync_unit_tests',
494 }, 495 },
495 'includes': [ '../build/apk_test.gypi' ], 496 'includes': [ '../build/apk_test.gypi' ],
496 }, 497 },
497 ], 498 ],
498 }], 499 }],
499 ], 500 ],
500 } 501 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698