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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 "//device:device_unittests", | 264 "//device:device_unittests", |
265 "//third_party/pdfium/samples", | 265 "//third_party/pdfium/samples", |
266 ] | 266 ] |
267 } | 267 } |
268 | 268 |
269 # | 269 # |
270 # TODO(GYP): Make everything below this work in the GN build. | 270 # TODO(GYP): Make everything below this work in the GN build. |
271 # | 271 # |
272 | 272 |
273 if (is_mac) { | 273 if (is_mac) { |
| 274 deps += [ |
| 275 "//third_party/apple_sample_code", |
| 276 "//third_party/molokocacao", |
| 277 ] |
| 278 |
274 # TODO(dpranke): These are as-yet untriaged but need at least the above. | 279 # TODO(dpranke): These are as-yet untriaged but need at least the above. |
275 deps -= [ | 280 deps -= [ |
276 "//apps", | 281 "//apps", |
277 "//ash", | 282 "//ash", |
278 "//chrome/browser", | 283 "//chrome/browser", |
279 "//chrome/browser/devtools", | 284 "//chrome/browser/devtools", |
280 "//chrome/common", | 285 "//chrome/common", |
281 "//chrome/plugin", | 286 "//chrome/plugin", |
282 "//chrome/renderer", | 287 "//chrome/renderer", |
283 "//chrome/test", | 288 "//chrome/test", |
(...skipping 12 matching lines...) Expand all Loading... |
296 "//ui/views", | 301 "//ui/views", |
297 "//ui/views/controls/webview", | 302 "//ui/views/controls/webview", |
298 "//ui/web_dialogs", | 303 "//ui/web_dialogs", |
299 ] | 304 ] |
300 } | 305 } |
301 | 306 |
302 if (is_mac || is_ios) { | 307 if (is_mac || is_ios) { |
303 deps -= [ "//ui/touch_selection" ] | 308 deps -= [ "//ui/touch_selection" ] |
304 } | 309 } |
305 } | 310 } |
OLD | NEW |