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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
54 '../tools/android/forwarder2/forwarder.gyp:forwarder2', | 54 '../tools/android/forwarder2/forwarder.gyp:forwarder2', |
55 '../tools/android/md5sum/md5sum.gyp:md5sum', | 55 '../tools/android/md5sum/md5sum.gyp:md5sum', |
56 '../ui/ui.gyp:ui_unittests', | 56 '../ui/ui.gyp:ui_unittests', |
57 # From here down: not added to run_tests.py yet. | 57 # From here down: not added to run_tests.py yet. |
58 '../jingle/jingle.gyp:jingle_unittests', | 58 '../jingle/jingle.gyp:jingle_unittests', |
59 # Required by ui_unittests. | 59 # Required by ui_unittests. |
60 # TODO(wangxianzhu): It'd better let ui_unittests depend on it, but | 60 # TODO(wangxianzhu): It'd better let ui_unittests depend on it, but |
61 # this would cause circular gyp dependency which needs refactoring the | 61 # this would cause circular gyp dependency which needs refactoring the |
62 # gyps to resolve. | 62 # gyps to resolve. |
63 '../chrome/chrome_resources.gyp:packed_resources', | 63 '../chrome/chrome_resources.gyp:packed_resources', |
64 '../webkit/compositor_bindings/compositor_bindings_tests.gyp:webkit_comp ositor_bindings_unittests_apk' | |
nilesh
2012/10/23 18:01:28
the unittest apk targets are listed below.
| |
64 ], | 65 ], |
65 'conditions': [ | 66 'conditions': [ |
66 ['linux_breakpad==1', { | 67 ['linux_breakpad==1', { |
67 'dependencies': [ | 68 'dependencies': [ |
68 '../breakpad/breakpad.gyp:breakpad_unittests', | 69 '../breakpad/breakpad.gyp:breakpad_unittests', |
69 ], | 70 ], |
70 }], | 71 }], |
71 ['"<(gtest_target_type)"=="shared_library"', { | 72 ['"<(gtest_target_type)"=="shared_library"', { |
72 'dependencies': [ | 73 'dependencies': [ |
73 # The first item is simply the template. We add as a dep | 74 # The first item is simply the template. We add as a dep |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
106 # 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 |
107 # on any bot. | 108 # on any bot. |
108 'target_name': 'android_in_progress', | 109 'target_name': 'android_in_progress', |
109 'type': 'none', | 110 'type': 'none', |
110 'dependencies': [ | 111 'dependencies': [ |
111 '../content/content.gyp:content_browsertests', | 112 '../content/content.gyp:content_browsertests', |
112 ], | 113 ], |
113 }, | 114 }, |
114 ], # targets | 115 ], # targets |
115 } | 116 } |
OLD | NEW |