OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 the root build file for GN. GN will start processing by loading this | 5 # This is the root build file for GN. GN will start processing by loading this |
6 # file, and recursively load all dependencies until all dependencies are either | 6 # file, and recursively load all dependencies until all dependencies are either |
7 # resolved or known not to exist (which will cause the build to fail). So if | 7 # resolved or known not to exist (which will cause the build to fail). So if |
8 # you add a new build file, there must be some path of dependencies from this | 8 # you add a new build file, there must be some path of dependencies from this |
9 # file to your new one or GN won't know about it. | 9 # file to your new one or GN won't know about it. |
10 | 10 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 "//ui/snapshot", | 95 "//ui/snapshot", |
96 "//ui/strings", | 96 "//ui/strings", |
97 "//ui/surface", | 97 "//ui/surface", |
98 "//url", | 98 "//url", |
99 "//v8:v8", | 99 "//v8:v8", |
100 "//webkit/browser:storage", | 100 "//webkit/browser:storage", |
101 "//webkit/child", | 101 "//webkit/child", |
102 ] | 102 ] |
103 | 103 |
104 if (!is_win) { | 104 if (!is_win) { |
105 # TODO(brettw) re-enable once this compiles reliably. | 105 deps += [ "//breakpad:symupload" ] |
106 #deps += [ "//breakpad:symupload" ] | |
107 } | 106 } |
108 | 107 |
109 if (is_linux) { | 108 if (is_linux) { |
110 deps += [ | 109 deps += [ |
111 "//dbus", | 110 "//dbus", |
112 "//third_party/fontconfig", | 111 "//third_party/fontconfig", |
113 "//third_party/freetype2", | 112 "//third_party/freetype2", |
114 ] | 113 ] |
115 } | 114 } |
116 | 115 |
(...skipping 26 matching lines...) Expand all Loading... |
143 "//third_party/libusb", | 142 "//third_party/libusb", |
144 | 143 |
145 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 144 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
146 "//third_party/libxslt", | 145 "//third_party/libxslt", |
147 | 146 |
148 "//tools/gn", | 147 "//tools/gn", |
149 "//ui/aura", | 148 "//ui/aura", |
150 | 149 |
151 # Fails on Android for unknown reasons. | 150 # Fails on Android for unknown reasons. |
152 "//third_party/flac", | 151 "//third_party/flac", |
| 152 "//breakpad:symupload", |
153 | 153 |
154 # TODO(brettw) make Blink work on Android. | 154 # TODO(brettw) make Blink work on Android. |
155 "//third_party/WebKit/public:blink_headers", | 155 "//third_party/WebKit/public:blink_headers", |
156 "//third_party/WebKit/Source/wtf", | 156 "//third_party/WebKit/Source/wtf", |
157 | 157 |
158 # Not tested on Android yet: | 158 # Not tested on Android yet: |
159 "//webkit/browser:storage", | 159 "//webkit/browser:storage", |
160 "//webkit/child", | 160 "//webkit/child", |
161 ] | 161 ] |
162 } | 162 } |
163 | 163 |
164 if (use_ozone) { | 164 if (use_ozone) { |
165 deps += [ | 165 deps += [ |
166 "//ui/events/ozone:events_ozone", | 166 "//ui/events/ozone:events_ozone", |
167 "//ui/events/ozone:events_ozone_evdev", | 167 "//ui/events/ozone:events_ozone_evdev", |
168 ] | 168 ] |
169 } | 169 } |
170 } | 170 } |
OLD | NEW |