| 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 13 matching lines...) Expand all Loading... |
| 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 "//content/public/common", |
| 34 "//content/public/renderer", |
| 34 "//crypto", | 35 "//crypto", |
| 35 "//device/usb", | 36 "//device/usb", |
| 36 #"//extensions/common/api:extensions_api", | 37 #"//extensions/common/api:extensions_api", |
| 37 "//gin", | 38 "//gin", |
| 38 "//gpu/command_buffer/client", | 39 "//gpu/command_buffer/client", |
| 39 "//gpu/command_buffer/service", | 40 "//gpu/command_buffer/service", |
| 40 "//ipc", | 41 "//ipc", |
| 41 "//mojo", | 42 "//mojo", |
| 42 "//net", | 43 "//net", |
| 43 #"//sdch", | 44 #"//sdch", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 62 # fixed and rolled into Chrome. | 63 # fixed and rolled into Chrome. |
| 63 #"//third_party/WebKit/Source/platform", | 64 #"//third_party/WebKit/Source/platform", |
| 64 "//third_party/WebKit/Source/wtf", | 65 "//third_party/WebKit/Source/wtf", |
| 65 "//third_party/zlib", | 66 "//third_party/zlib", |
| 66 "//third_party:jpeg", | 67 "//third_party:jpeg", |
| 67 "//tools/gn", | 68 "//tools/gn", |
| 68 "//ui/accessibility", | 69 "//ui/accessibility", |
| 69 "//ui/base:ui_base", | 70 "//ui/base:ui_base", |
| 70 "//ui/events", | 71 "//ui/events", |
| 71 "//ui/gfx", | 72 "//ui/gfx", |
| 73 "//ui/native_theme", |
| 72 "//ui/resources", | 74 "//ui/resources", |
| 73 "//ui/strings", | 75 "//ui/strings", |
| 74 "//ui/surface", | 76 "//ui/surface", |
| 75 "//url", | 77 "//url", |
| 76 "//v8:mksnapshot", | 78 "//v8:mksnapshot", |
| 77 ] | 79 ] |
| 78 | 80 |
| 79 if (is_linux) { | 81 if (is_linux) { |
| 80 deps += [ | 82 deps += [ |
| 81 "//third_party/freetype2", | 83 "//third_party/freetype2", |
| 82 ] | 84 ] |
| 83 } | 85 } |
| 84 | 86 |
| 85 if (is_android) { | 87 if (is_android) { |
| 86 deps -= [ | 88 deps -= [ |
| 87 "//content/public/common", | 89 "//content/public/common", |
| 90 "//content/public/renderer", |
| 88 "//gpu/command_buffer/client", # Needs some JNI stuff: | 91 "//gpu/command_buffer/client", # Needs some JNI stuff: |
| 89 "//gpu/command_buffer/service", | 92 "//gpu/command_buffer/service", |
| 90 "//net", | 93 "//net", |
| 91 "//third_party/libusb", | 94 "//third_party/libusb", |
| 92 #"//third_party/WebKit/Source/platform", | 95 #"//third_party/WebKit/Source/platform", |
| 93 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 96 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
| 94 "//tools/gn", | 97 "//tools/gn", |
| 95 | 98 |
| 96 # ui_base doesn't work yet, and neither do things that depend on it. | 99 # ui_base doesn't work yet, and neither do things that depend on it. |
| 97 "//ui/base:ui_base", | 100 "//ui/base:ui_base", |
| 98 "//ui/events", | 101 "//ui/events", |
| 102 "//ui/native_theme", |
| 99 "//ui/surface", | 103 "//ui/surface", |
| 100 ] | 104 ] |
| 101 } | 105 } |
| 102 } | 106 } |
| OLD | NEW |