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

Side by Side Diff: build/all_android.gyp

Issue 11366035: Add a native test target and for android_webview. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 | Annotate | Revision Log
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 # This is all.gyp file for Android to prevent breakage in Android and other 5 # This is all.gyp file for Android to prevent breakage in Android and other
6 # platform; It will be churning a lot in the short term and eventually be merged 6 # platform; It will be churning a lot in the short term and eventually be merged
7 # into all.gyp. 7 # into all.gyp.
8 8
9 { 9 {
10 'variables': { 10 'variables': {
(...skipping 18 matching lines...) Expand all
29 # until the full set supported. If adding a new test here, 29 # until the full set supported. If adding a new test here,
30 # please also add it to build/android/run_tests.py, else the 30 # please also add it to build/android/run_tests.py, else the
31 # test is not run. 31 # test is not run.
32 # 32 #
33 # WARNING: 33 # WARNING:
34 # Do not add targets here without communicating the implications 34 # Do not add targets here without communicating the implications
35 # on tryserver triggers and load. Discuss with jrg please. 35 # on tryserver triggers and load. Discuss with jrg please.
36 'target_name': 'android_builder_tests', 36 'target_name': 'android_builder_tests',
37 'type': 'none', 37 'type': 'none',
38 'dependencies': [ 38 'dependencies': [
39 '../android_webview/android_webview.gyp:android_webview_unittests',
39 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', 40 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests',
40 '../base/base.gyp:base_unittests', 41 '../base/base.gyp:base_unittests',
41 '../cc/cc_tests.gyp:cc_unittests', 42 '../cc/cc_tests.gyp:cc_unittests',
42 '../chrome/chrome.gyp:unit_tests', 43 '../chrome/chrome.gyp:unit_tests',
43 '../content/content.gyp:content_shell_test_apk', 44 '../content/content.gyp:content_shell_test_apk',
44 '../content/content.gyp:content_unittests', 45 '../content/content.gyp:content_unittests',
45 '../gpu/gpu.gyp:gpu_unittests', 46 '../gpu/gpu.gyp:gpu_unittests',
46 '../ipc/ipc.gyp:ipc_tests', 47 '../ipc/ipc.gyp:ipc_tests',
47 '../media/media.gyp:media_unittests', 48 '../media/media.gyp:media_unittests',
48 '../net/net.gyp:net_unittests', 49 '../net/net.gyp:net_unittests',
(...skipping 18 matching lines...) Expand all
67 ], 68 ],
68 }], 69 }],
69 ['"<(gtest_target_type)"=="shared_library"', { 70 ['"<(gtest_target_type)"=="shared_library"', {
70 'dependencies': [ 71 'dependencies': [
71 # The first item is simply the template. We add as a dep 72 # The first item is simply the template. We add as a dep
72 # to make sure it builds in ungenerated form. TODO(jrg): 73 # to make sure it builds in ungenerated form. TODO(jrg):
73 # once stable, transition to a test-only (optional) 74 # once stable, transition to a test-only (optional)
74 # target. 75 # target.
75 '../testing/android/native_test.gyp:native_test_apk', 76 '../testing/android/native_test.gyp:native_test_apk',
76 # Unit test bundles packaged as an apk. 77 # Unit test bundles packaged as an apk.
78 '../android_webview/android_webview.gyp:android_webview_unittests_ap k',
77 '../base/base.gyp:base_unittests_apk', 79 '../base/base.gyp:base_unittests_apk',
78 '../cc/cc_tests.gyp:cc_unittests_apk', 80 '../cc/cc_tests.gyp:cc_unittests_apk',
79 '../chrome/chrome.gyp:unit_tests_apk', 81 '../chrome/chrome.gyp:unit_tests_apk',
80 '../content/content.gyp:content_unittests_apk', 82 '../content/content.gyp:content_unittests_apk',
81 '../gpu/gpu.gyp:gpu_unittests_apk', 83 '../gpu/gpu.gyp:gpu_unittests_apk',
82 '../ipc/ipc.gyp:ipc_tests_apk', 84 '../ipc/ipc.gyp:ipc_tests_apk',
83 '../media/media.gyp:media_unittests_apk', 85 '../media/media.gyp:media_unittests_apk',
84 '../net/net.gyp:net_unittests_apk', 86 '../net/net.gyp:net_unittests_apk',
85 '../sql/sql.gyp:sql_unittests_apk', 87 '../sql/sql.gyp:sql_unittests_apk',
86 '../sync/sync.gyp:sync_unit_tests_apk', 88 '../sync/sync.gyp:sync_unit_tests_apk',
(...skipping 18 matching lines...) Expand all
105 # In-progress targets that are expected to fail and are NOT run 107 # In-progress targets that are expected to fail and are NOT run
106 # on any bot. 108 # on any bot.
107 'target_name': 'android_in_progress', 109 'target_name': 'android_in_progress',
108 'type': 'none', 110 'type': 'none',
109 'dependencies': [ 111 'dependencies': [
110 '../content/content.gyp:content_browsertests', 112 '../content/content.gyp:content_browsertests',
111 ], 113 ],
112 }, 114 },
113 ], # targets 115 ], # targets
114 } 116 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698