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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
49 '../content/content.gyp:content_unittests', | 49 '../content/content.gyp:content_unittests', |
50 '../gpu/gpu.gyp:gpu_unittests', | 50 '../gpu/gpu.gyp:gpu_unittests', |
51 '../ipc/ipc.gyp:ipc_tests', | 51 '../ipc/ipc.gyp:ipc_tests', |
52 '../media/media.gyp:media_unittests', | 52 '../media/media.gyp:media_unittests', |
53 '../net/net.gyp:net_unittests', | 53 '../net/net.gyp:net_unittests', |
54 '../sql/sql.gyp:sql_unittests', | 54 '../sql/sql.gyp:sql_unittests', |
55 '../sync/sync.gyp:sync_unit_tests', | 55 '../sync/sync.gyp:sync_unit_tests', |
56 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', | 56 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', |
57 '../tools/android/device_stats_monitor/device_stats_monitor.gyp:device_s tats_monitor', | 57 '../tools/android/device_stats_monitor/device_stats_monitor.gyp:device_s tats_monitor', |
58 '../tools/android/fake_dns/fake_dns.gyp:fake_dns', | 58 '../tools/android/fake_dns/fake_dns.gyp:fake_dns', |
59 '../tools/android/forwarder/forwarder.gyp:forwarder', | |
Yaron
2012/10/01 22:28:43
I take it you'll remove the old forwarder code whe
felipeg
2012/10/01 22:35:26
Yep.
| |
60 '../tools/android/forwarder2/forwarder.gyp:forwarder2', | 59 '../tools/android/forwarder2/forwarder.gyp:forwarder2', |
61 '../tools/android/md5sum/md5sum.gyp:md5sum', | 60 '../tools/android/md5sum/md5sum.gyp:md5sum', |
62 '../ui/ui.gyp:ui_unittests', | 61 '../ui/ui.gyp:ui_unittests', |
63 # From here down: not added to run_tests.py yet. | 62 # From here down: not added to run_tests.py yet. |
64 '../jingle/jingle.gyp:jingle_unittests', | 63 '../jingle/jingle.gyp:jingle_unittests', |
65 # Required by ui_unittests. | 64 # Required by ui_unittests. |
66 # TODO(wangxianzhu): It'd better let ui_unittests depend on it, but | 65 # TODO(wangxianzhu): It'd better let ui_unittests depend on it, but |
67 # this would cause circular gyp dependency which needs refactoring the | 66 # this would cause circular gyp dependency which needs refactoring the |
68 # gyps to resolve. | 67 # gyps to resolve. |
69 '../chrome/chrome_resources.gyp:packed_resources', | 68 '../chrome/chrome_resources.gyp:packed_resources', |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
115 # In-progress targets that are expected to fail and are NOT run | 114 # In-progress targets that are expected to fail and are NOT run |
116 # on any bot. | 115 # on any bot. |
117 'target_name': 'android_in_progress', | 116 'target_name': 'android_in_progress', |
118 'type': 'none', | 117 'type': 'none', |
119 'dependencies': [ | 118 'dependencies': [ |
120 '../content/content.gyp:content_browsertests', | 119 '../content/content.gyp:content_browsertests', |
121 ], | 120 ], |
122 }, | 121 }, |
123 ], # targets | 122 ], # targets |
124 } | 123 } |
OLD | NEW |