| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "//ui/base:ui_base", | 77 "//ui/base:ui_base", |
| 78 "//ui/events", | 78 "//ui/events", |
| 79 "//ui/gfx", | 79 "//ui/gfx", |
| 80 "//ui/gl", | 80 "//ui/gl", |
| 81 "//ui/native_theme", | 81 "//ui/native_theme", |
| 82 "//ui/resources", | 82 "//ui/resources", |
| 83 "//ui/strings", | 83 "//ui/strings", |
| 84 "//ui/surface", | 84 "//ui/surface", |
| 85 "//url", | 85 "//url", |
| 86 "//v8:mksnapshot", | 86 "//v8:mksnapshot", |
| 87 "//webkit/browser:storage", |
| 88 "//webkit/child", |
| 87 ] | 89 ] |
| 88 | 90 |
| 89 if (is_linux) { | 91 if (is_linux) { |
| 90 deps += [ | 92 deps += [ |
| 91 "//third_party/freetype2", | 93 "//third_party/freetype2", |
| 92 ] | 94 ] |
| 93 } | 95 } |
| 94 | 96 |
| 95 if (is_win) { | 97 if (is_win) { |
| 96 deps += [ | 98 deps += [ |
| 97 "//ui/metro_viewer", | 99 "//ui/metro_viewer", |
| 98 ] | 100 ] |
| 99 } | 101 } |
| 100 | 102 |
| 101 if (is_android) { | 103 if (is_android) { |
| 102 deps -= [ | 104 deps -= [ |
| 103 "//cc", | 105 "//cc", |
| 104 "//content/public/common", | 106 "//content/public/common", |
| 105 "//content/public/renderer", | 107 "//content/public/renderer", |
| 106 "//ppapi:ppapi_c", | 108 "//ppapi:ppapi_c", |
| 107 "//third_party/libusb", | 109 "//third_party/libusb", |
| 108 #"//third_party/WebKit/Source/platform", | 110 #"//third_party/WebKit/Source/platform", |
| 109 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 111 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
| 110 "//tools/gn", | 112 "//tools/gn", |
| 111 | 113 |
| 114 # Not tested on Android yet: |
| 115 "//webkit/browser:storage", |
| 116 "//webkit/child", |
| 117 |
| 112 # This stuff all depends on ui/surface which requires some .class jni | 118 # This stuff all depends on ui/surface which requires some .class jni |
| 113 # generators (ui/gl/gl.gyp:surface_jni_headers). | 119 # generators (ui/gl/gl.gyp:surface_jni_headers). |
| 114 "//ui/gl", | 120 "//ui/gl", |
| 115 "//gpu", | 121 "//gpu", |
| 116 "//ui/surface", | 122 "//ui/surface", |
| 117 ] | 123 ] |
| 118 } | 124 } |
| 119 } | 125 } |
| OLD | NEW |