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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 "//third_party/smhasher:pmurhash", | 55 "//third_party/smhasher:pmurhash", |
56 "//third_party/WebKit/Source/wtf", | 56 "//third_party/WebKit/Source/wtf", |
57 "//third_party/zlib", | 57 "//third_party/zlib", |
58 "//third_party:jpeg", | 58 "//third_party:jpeg", |
59 "//tools/gn", | 59 "//tools/gn", |
60 "//ui/base:ui_base", | 60 "//ui/base:ui_base", |
61 "//ui/base/strings", | 61 "//ui/base/strings", |
62 "//ui/events", | 62 "//ui/events", |
63 "//ui/gfx", | 63 "//ui/gfx", |
64 "//ui/resources", | 64 "//ui/resources", |
| 65 "//ui/surface", |
65 "//url", | 66 "//url", |
66 ] | 67 ] |
67 | 68 |
68 if (is_linux) { | 69 if (is_linux) { |
69 deps += [ | 70 deps += [ |
70 "//third_party/freetype2", | 71 "//third_party/freetype2", |
71 ] | 72 ] |
72 } | 73 } |
73 | 74 |
74 if (is_android) { | 75 if (is_android) { |
75 deps -= [ | 76 deps -= [ |
76 "//components/os_crypt", | 77 "//components/os_crypt", |
77 "//crypto", | 78 "//crypto", |
78 "//gpu:gles2_c_lib", # Needs Skia. | 79 "//gpu:gles2_c_lib", # Needs Skia. |
79 "//net", | 80 "//net", |
80 "//skia", # Needs some ARM stuff | 81 "//skia", # Needs some ARM stuff |
81 "//third_party/libusb", | 82 "//third_party/libusb", |
82 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 83 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
83 "//tools/gn", | 84 "//tools/gn", |
84 "//ui/base:ui_base", | 85 "//ui/base:ui_base", |
85 "//ui/events", | 86 "//ui/events", |
86 "//ui/gfx", | 87 "//ui/gfx", |
| 88 "//ui/surface", # TODO(brettw): Skia does not build on Android yet. |
| 89 # Re-enable this when skia is fixed. |
87 ] | 90 ] |
88 } | 91 } |
89 } | 92 } |
OLD | NEW |