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 # 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 '../ui/ui.gyp:ui_unittests', | 63 '../ui/ui.gyp:ui_unittests', |
64 # From here down: not added to run_tests.py yet. | 64 # From here down: not added to run_tests.py yet. |
65 '../jingle/jingle.gyp:jingle_unittests', | 65 '../jingle/jingle.gyp:jingle_unittests', |
66 # Required by ui_unittests. | 66 # Required by ui_unittests. |
67 # TODO(wangxianzhu): It'd better let ui_unittests depend on it, but | 67 # TODO(wangxianzhu): It'd better let ui_unittests depend on it, but |
68 # this would cause circular gyp dependency which needs refactoring the | 68 # this would cause circular gyp dependency which needs refactoring the |
69 # gyps to resolve. | 69 # gyps to resolve. |
70 '../chrome/chrome_resources.gyp:packed_resources', | 70 '../chrome/chrome_resources.gyp:packed_resources', |
71 ], | 71 ], |
72 'conditions': [ | 72 'conditions': [ |
| 73 ['sdk_build==1', { |
| 74 'dependencies': [ |
| 75 '../chrome/chrome.gyp:chromium_testshell_test_apk', |
| 76 ], |
| 77 }], # sdk_build==1 |
73 ['linux_breakpad==1', { | 78 ['linux_breakpad==1', { |
74 'dependencies': [ | 79 'dependencies': [ |
75 '../breakpad/breakpad.gyp:breakpad_unittests', | 80 '../breakpad/breakpad.gyp:breakpad_unittests', |
76 ], | 81 ], |
77 }], | 82 }], |
78 ['"<(gtest_target_type)"=="shared_library"', { | 83 ['"<(gtest_target_type)"=="shared_library"', { |
79 'dependencies': [ | 84 'dependencies': [ |
80 # The first item is simply the template. We add as a dep | 85 # The first item is simply the template. We add as a dep |
81 # to make sure it builds in ungenerated form. TODO(jrg): | 86 # to make sure it builds in ungenerated form. TODO(jrg): |
82 # once stable, transition to a test-only (optional) | 87 # once stable, transition to a test-only (optional) |
83 # target. | 88 # target. |
84 '../testing/android/native_test.gyp:native_test_apk', | 89 '../testing/android/native_test.gyp:native_test_apk', |
85 # Unit test bundles packaged as an apk. | 90 # Unit test bundles packaged as an apk. |
86 '../base/base.gyp:base_unittests_apk', | 91 '../base/base.gyp:base_unittests_apk', |
87 '../chrome/chrome.gyp:unit_tests_apk', | 92 '../chrome/chrome.gyp:unit_tests_apk', |
88 '../content/content.gyp:content_unittests_apk', | 93 '../content/content.gyp:content_unittests_apk', |
89 '../gpu/gpu.gyp:gpu_unittests_apk', | 94 '../gpu/gpu.gyp:gpu_unittests_apk', |
90 '../ipc/ipc.gyp:ipc_tests_apk', | 95 '../ipc/ipc.gyp:ipc_tests_apk', |
91 '../media/media.gyp:media_unittests_apk', | 96 '../media/media.gyp:media_unittests_apk', |
92 '../net/net.gyp:net_unittests_apk', | 97 '../net/net.gyp:net_unittests_apk', |
93 '../sql/sql.gyp:sql_unittests_apk', | 98 '../sql/sql.gyp:sql_unittests_apk', |
94 '../sync/sync.gyp:sync_unit_tests_apk', | 99 '../sync/sync.gyp:sync_unit_tests_apk', |
95 '../ui/ui.gyp:ui_unittests_apk', | 100 '../ui/ui.gyp:ui_unittests_apk', |
96 ], | 101 ], |
97 }] | 102 }], |
98 ], | 103 ], |
99 }, | 104 }, |
100 { | 105 { |
101 # Experimental / in-progress targets that are expected to fail | 106 # Experimental / in-progress targets that are expected to fail |
102 # but we still try to compile them on bots (turning the stage | 107 # but we still try to compile them on bots (turning the stage |
103 # orange, not red). | 108 # orange, not red). |
104 'target_name': 'android_experimental', | 109 'target_name': 'android_experimental', |
105 'type': 'none', | 110 'type': 'none', |
106 'dependencies': [ | 111 'dependencies': [ |
107 ], | 112 ], |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 'action': [ | 145 'action': [ |
141 'mkdir', | 146 'mkdir', |
142 '-p', | 147 '-p', |
143 '<@(output_dirs)', | 148 '<@(output_dirs)', |
144 ], | 149 ], |
145 }, | 150 }, |
146 ], | 151 ], |
147 }, # build_output_dirs | 152 }, # build_output_dirs |
148 ], # targets | 153 ], # targets |
149 } | 154 } |
OLD | NEW |