cc: Stretch textures by .5 texels to prevent out of bounds sampling
[chromium-blink-merge.git] / build / all_android.gyp
blobff0d2279e96cbec3e9716d1122bdff7e8bf4750d
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
3 # found in the LICENSE file.
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
7 # into all.gyp.
10   'variables': {
11     # A hook that can be overridden in other repositories to add additional
12     # compilation targets to 'All'
13     'android_app_targets%': [],
14   },
15   'targets': [
16     {
17       'target_name': 'All',
18       'type': 'none',
19       'dependencies': [
20         '../content/content.gyp:content_shell_apk',
21         '<@(android_app_targets)',
22         'android_builder_tests',
23         '../android_webview/android_webview.gyp:android_webview_apk',
24         '../chrome/chrome.gyp:chromium_testshell',
25         # TODO(nyquist) This should instead by a target for sync when all of
26         # the sync-related code for Android has been upstreamed.
27         # See http://crbug.com/159203
28         '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation_javalib',
29       ],
30     }, # target_name: All
31     {
32       # The current list of tests for android.  This is temporary
33       # until the full set supported.  If adding a new test here,
34       # please also add it to build/android/run_tests.py, else the
35       # test is not run.
36       #
37       # WARNING:
38       # Do not add targets here without communicating the implications
39       # on tryserver triggers and load.  Discuss with jrg please.
40       'target_name': 'android_builder_tests',
41       'type': 'none',
42       'dependencies': [
43         '../android_webview/android_webview.gyp:android_webview_unittests',
44         '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests',
45         '../base/base.gyp:base_unittests',
46         '../cc/cc_tests.gyp:cc_perftests_apk',
47         '../cc/cc_tests.gyp:cc_unittests',
48         '../chrome/chrome.gyp:unit_tests',
49         '../components/components.gyp:components_unittests',
50         '../content/content.gyp:content_browsertests',
51         '../content/content.gyp:content_shell_test_apk',
52         '../content/content.gyp:content_unittests',
53         '../gpu/gpu.gyp:gpu_unittests',
54         '../ipc/ipc.gyp:ipc_tests',
55         '../media/media.gyp:media_unittests',
56         '../net/net.gyp:net_unittests',
57         '../sandbox/sandbox.gyp:sandbox_linux_unittests',
58         '../sql/sql.gyp:sql_unittests',
59         '../sync/sync.gyp:sync_unit_tests',
60         '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*',
61         '../tools/android/android_tools.gyp:android_tools',
62         '../tools/android/device_stats_monitor/device_stats_monitor.gyp:device_stats_monitor',
63         '../tools/android/findbugs_plugin/findbugs_plugin.gyp:findbugs_plugin_test',
64         '../ui/ui.gyp:ui_unittests',
65         # Required by ui_unittests.
66         # TODO(wangxianzhu): It'd better let ui_unittests depend on it, but
67         # this would cause circular gyp dependency which needs refactoring the
68         # gyps to resolve.
69         '../chrome/chrome_resources.gyp:packed_resources',
70       ],
71       'conditions': [
72         ['linux_breakpad==1', {
73           'dependencies': [
74             '../breakpad/breakpad.gyp:breakpad_unittests',
75             # Also compile the tools needed to deal with minidumps, they are
76             # needed to run minidump tests upstream.
77             '../breakpad/breakpad.gyp:dump_syms#host',
78             '../breakpad/breakpad.gyp:symupload#host',
79             '../breakpad/breakpad.gyp:minidump_dump#host',
80             '../breakpad/breakpad.gyp:minidump_stackwalk#host'
81           ],
82         }],
83         ['"<(gtest_target_type)"=="shared_library"', {
84           'dependencies': [
85             # The first item is simply the template.  We add as a dep
86             # to make sure it builds in ungenerated form.  TODO(jrg):
87             # once stable, transition to a test-only (optional)
88             # target.
89             '../testing/android/native_test.gyp:native_test_apk',
90             # Unit test bundles packaged as an apk.
91             '../android_webview/android_webview.gyp:android_webview_unittests_apk',
92             '../base/base.gyp:base_unittests_apk',
93             '../cc/cc_tests.gyp:cc_unittests_apk',
94             '../chrome/chrome.gyp:unit_tests_apk',
95             '../components/components.gyp:components_unittests_apk',
96             '../content/content.gyp:content_browsertests_apk',
97             '../content/content.gyp:content_unittests_apk',
98             '../gpu/gpu.gyp:gpu_unittests_apk',
99             '../ipc/ipc.gyp:ipc_tests_apk',
100             '../media/media.gyp:media_unittests_apk',
101             '../net/net.gyp:net_unittests_apk',
102             '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests_apk',
103             '../sql/sql.gyp:sql_unittests_apk',
104             '../sync/sync.gyp:sync_unit_tests_apk',
105             '../ui/ui.gyp:ui_unittests_apk',
106             '../android_webview/android_webview.gyp:android_webview_test_apk',
107             '../chrome/chrome.gyp:chromium_testshell_test_apk',
108             '../webkit/compositor_bindings/compositor_bindings_tests.gyp:webkit_compositor_bindings_unittests_apk'
109           ],
110         }],
111       ],
112     },
113     {
114       # Experimental / in-progress targets that are expected to fail
115       # but we still try to compile them on bots (turning the stage
116       # orange, not red).
117       'target_name': 'android_experimental',
118       'type': 'none',
119       'dependencies': [
120       ],
121     },
122     {
123       # In-progress targets that are expected to fail and are NOT run
124       # on any bot.
125       'target_name': 'android_in_progress',
126       'type': 'none',
127       'dependencies': [
128       ],
129     },
130   ],  # targets