Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Side by Side Diff: BUILD.gn

Issue 362583002: Add more GN deps to the build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/config/linux/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 "//pdf", 44 "//pdf",
45 "//ppapi:ppapi_c", 45 "//ppapi:ppapi_c",
46 "//printing", 46 "//printing",
47 "//sandbox", 47 "//sandbox",
48 "//sdch", 48 "//sdch",
49 "//skia", 49 "//skia",
50 "//sql", 50 "//sql",
51 "//third_party/WebKit/public:all_blink", 51 "//third_party/WebKit/public:all_blink",
52 "//third_party/angle:translator", 52 "//third_party/angle:translator",
53 "//third_party/brotli", 53 "//third_party/brotli",
54 "//third_party/cacheinvalidation",
54 "//third_party/ffmpeg", 55 "//third_party/ffmpeg",
55 "//third_party/flac", 56 "//third_party/flac",
56 "//third_party/harfbuzz-ng", 57 "//third_party/harfbuzz-ng",
57 "//third_party/hunspell", 58 "//third_party/hunspell",
58 "//third_party/iccjpeg", 59 "//third_party/iccjpeg",
59 "//third_party/icu", 60 "//third_party/icu",
60 "//third_party/leveldatabase", 61 "//third_party/leveldatabase",
62 "//third_party/libaddressinput",
61 "//third_party/libpng", 63 "//third_party/libpng",
62 "//third_party/libsrtp", 64 "//third_party/libsrtp",
63 "//third_party/libusb", 65 "//third_party/libusb",
64 "//third_party/libwebm", 66 "//third_party/libwebm",
65 "//third_party/libwebp", 67 "//third_party/libwebp",
66 "//third_party/libxslt", 68 "//third_party/libxslt",
67 "//third_party/libyuv", 69 "//third_party/libyuv",
68 "//third_party/lzma_sdk", 70 "//third_party/lzma_sdk",
69 "//third_party/mesa", 71 "//third_party/mesa",
70 "//third_party/opus", 72 "//third_party/opus",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 "//ui/aura", 153 "//ui/aura",
152 154
153 # Fails on Android for unknown reasons. 155 # Fails on Android for unknown reasons.
154 "//third_party/flac", 156 "//third_party/flac",
155 "//breakpad:symupload", 157 "//breakpad:symupload",
156 158
157 # TODO(brettw) make Blink work on Android. 159 # TODO(brettw) make Blink work on Android.
158 "//third_party/WebKit/public:all_blink", 160 "//third_party/WebKit/public:all_blink",
159 161
160 # Not tested on Android yet: 162 # Not tested on Android yet:
163 "//third_party/libaddressinput",
161 "//third_party/ffmpeg", 164 "//third_party/ffmpeg",
162 "//webkit/browser:storage", 165 "//webkit/browser:storage",
163 "//webkit/child", 166 "//webkit/child",
164 ] 167 ]
165 } 168 }
166 169
167 if (use_ozone) { 170 if (use_ozone) {
168 deps += [ 171 deps += [
169 "//ui/events/ozone:events_ozone", 172 "//ui/events/ozone:events_ozone",
170 "//ui/events/ozone:events_ozone_evdev", 173 "//ui/events/ozone:events_ozone_evdev",
171 ] 174 ]
172 } 175 }
173 } 176 }
OLDNEW
« no previous file with comments | « no previous file | build/config/linux/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698