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

Side by Side Diff: BUILD.gn

Issue 874033003: Fix chrome target in Windows GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix building on chromeos. Created 5 years, 10 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
« no previous file with comments | « no previous file | build/config/win/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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 "//ui/keyboard", 294 "//ui/keyboard",
295 "//ui/views", 295 "//ui/views",
296 "//ui/views/controls/webview", 296 "//ui/views/controls/webview",
297 "//ui/web_dialogs", 297 "//ui/web_dialogs",
298 ] 298 ]
299 } 299 }
300 300
301 if (is_mac || is_ios) { 301 if (is_mac || is_ios) {
302 deps -= [ "//ui/touch_selection" ] 302 deps -= [ "//ui/touch_selection" ]
303 } 303 }
304
305 if (is_win) {
306 deps -= [
307 "//apps",
308 "//ash",
309 "//chrome/browser",
310 "//chrome/browser/devtools",
311 "//chrome/common",
312 "//chrome/plugin",
313 "//chrome/renderer",
314 "//chrome/test",
315 "//chrome/utility",
316 "//components:all_components",
317 "//cc/blink",
318 "//content",
319 "//content/shell:content_shell",
320 "//content/test:test_support",
321 "//extensions/browser",
322 "//extensions/common",
323 "//extensions/renderer",
324 "//media/blink",
325 "//mojo",
326 "//pdf",
327 "//ppapi:ppapi_c",
328 "//printing",
329 "//remoting/client/plugin",
330 "//third_party/WebKit/public:all_blink",
331 "//ui/app_list",
332 "//ui/aura",
333 "//ui/keyboard",
334 "//ui/snapshot",
335 "//ui/views",
336 "//ui/views/controls/webview",
337 "//ui/web_dialogs",
338 "//ui/wm",
339 ]
340 }
341 } 304 }
OLDNEW
« no previous file with comments | « no previous file | build/config/win/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698