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 24 matching lines...) Expand all Loading... |
35 "//content/public/common", | 35 "//content/public/common", |
36 "//crypto", | 36 "//crypto", |
37 "//device/usb", | 37 "//device/usb", |
38 #"//extensions/common/api:extensions_api", | 38 #"//extensions/common/api:extensions_api", |
39 "//gin", | 39 "//gin", |
40 "//gpu/command_buffer/client", | 40 "//gpu/command_buffer/client", |
41 "//gpu/command_buffer/service", | 41 "//gpu/command_buffer/service", |
42 "//ipc", | 42 "//ipc", |
43 "//mojo", | 43 "//mojo", |
44 "//net", | 44 "//net", |
| 45 "//ppapi:ppapi_c", |
45 #"//sdch", | 46 #"//sdch", |
46 "//skia", | 47 "//skia", |
47 "//third_party/brotli", | 48 "//third_party/brotli", |
48 "//third_party/harfbuzz-ng", | 49 "//third_party/harfbuzz-ng", |
49 "//third_party/iccjpeg", | 50 "//third_party/iccjpeg", |
50 "//third_party/icu", | 51 "//third_party/icu", |
51 "//third_party/leveldatabase", | 52 "//third_party/leveldatabase", |
52 "//third_party/libpng", | 53 "//third_party/libpng", |
53 "//third_party/libusb", | 54 "//third_party/libusb", |
54 "//third_party/libwebm", | 55 "//third_party/libwebm", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 89 |
89 if (is_win) { | 90 if (is_win) { |
90 deps += [ | 91 deps += [ |
91 "//ui/metro_viewer", | 92 "//ui/metro_viewer", |
92 ] | 93 ] |
93 } | 94 } |
94 | 95 |
95 if (is_android) { | 96 if (is_android) { |
96 deps -= [ | 97 deps -= [ |
97 "//content/public/common", | 98 "//content/public/common", |
| 99 "//ppapi:ppapi_c", |
98 "//third_party/libusb", | 100 "//third_party/libusb", |
99 #"//third_party/WebKit/Source/platform", | 101 #"//third_party/WebKit/Source/platform", |
100 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 102 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
101 "//tools/gn", | 103 "//tools/gn", |
102 | 104 |
103 # This stuff all depends on ui/surface which requires some .class jni | 105 # This stuff all depends on ui/surface which requires some .class jni |
104 # generators (ui/gl/gl.gyp:surface_jni_headers). | 106 # generators (ui/gl/gl.gyp:surface_jni_headers). |
105 "//ui/gl", | 107 "//ui/gl", |
106 "//gpu/command_buffer/client", | 108 "//gpu/command_buffer/client", |
107 "//gpu/command_buffer/service", | 109 "//gpu/command_buffer/service", |
108 "//ui/surface", | 110 "//ui/surface", |
109 ] | 111 ] |
110 } | 112 } |
111 } | 113 } |
OLD | NEW |