| 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 12 matching lines...) Expand all Loading... |
| 23 "//components/metrics", | 23 "//components/metrics", |
| 24 "//components/navigation_metrics", | 24 "//components/navigation_metrics", |
| 25 "//components/onc", | 25 "//components/onc", |
| 26 "//components/os_crypt", | 26 "//components/os_crypt", |
| 27 "//components/startup_metric_utils", | 27 "//components/startup_metric_utils", |
| 28 "//components/resources:components_resources", | 28 "//components/resources:components_resources", |
| 29 "//components/tracing", | 29 "//components/tracing", |
| 30 "//components/translate:translate_core_browser", | 30 "//components/translate:translate_core_browser", |
| 31 "//components/translate:translate_core_common", | 31 "//components/translate:translate_core_common", |
| 32 "//components/url_matcher", | 32 "//components/url_matcher", |
| 33 "//content/public/common", |
| 33 "//crypto", | 34 "//crypto", |
| 34 "//device/usb", | 35 "//device/usb", |
| 35 #"//extensions/common/api:extensions_api", | 36 #"//extensions/common/api:extensions_api", |
| 36 "//gpu/command_buffer/client", | 37 "//gpu/command_buffer/client", |
| 37 "//gpu/command_buffer/service", | 38 "//gpu/command_buffer/service", |
| 38 "//ipc", | 39 "//ipc", |
| 39 "//mojo", | 40 "//mojo", |
| 40 "//net", | 41 "//net", |
| 41 #"//sdch", | 42 #"//sdch", |
| 42 "//skia", | 43 "//skia", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 75 |
| 75 if (is_linux) { | 76 if (is_linux) { |
| 76 deps += [ | 77 deps += [ |
| 77 "//third_party/freetype2", | 78 "//third_party/freetype2", |
| 78 ] | 79 ] |
| 79 } | 80 } |
| 80 | 81 |
| 81 if (is_android) { | 82 if (is_android) { |
| 82 deps -= [ | 83 deps -= [ |
| 83 "//components/os_crypt", | 84 "//components/os_crypt", |
| 85 "//content/public/common", |
| 84 "//crypto", | 86 "//crypto", |
| 85 "//gpu/command_buffer/client", # Needs Skia. | 87 "//gpu/command_buffer/client", # Needs Skia. |
| 86 "//net", | 88 "//net", |
| 87 "//third_party/libusb", | 89 "//third_party/libusb", |
| 88 #"//third_party/WebKit/Source/platform", | 90 #"//third_party/WebKit/Source/platform", |
| 89 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 91 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
| 90 "//tools/gn", | 92 "//tools/gn", |
| 91 | 93 |
| 92 # This UI stuff is blocked on Skia. | 94 # This UI stuff is blocked on Skia. |
| 93 "//ui/accessibility", | 95 "//ui/accessibility", |
| 94 "//ui/base:ui_base", | 96 "//ui/base:ui_base", |
| 95 "//ui/events", | 97 "//ui/events", |
| 96 "//ui/gfx", | 98 "//ui/gfx", |
| 97 "//ui/surface", | 99 "//ui/surface", |
| 98 ] | 100 ] |
| 99 } | 101 } |
| 100 } | 102 } |
| OLD | NEW |