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

Side by Side Diff: BUILD.gn

Issue 305293002: Add GN build file for ui/aura target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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') | ui/gfx/x/BUILD.gn » ('J')
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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 "//third_party/qcms", 71 "//third_party/qcms",
72 "//third_party/re2", 72 "//third_party/re2",
73 "//third_party/smhasher:cityhash", 73 "//third_party/smhasher:cityhash",
74 "//third_party/smhasher:murmurhash3", 74 "//third_party/smhasher:murmurhash3",
75 "//third_party/smhasher:pmurhash", 75 "//third_party/smhasher:pmurhash",
76 # "//third_party/WebKit/Source/platform", 76 # "//third_party/WebKit/Source/platform",
77 "//third_party/WebKit/Source/wtf", 77 "//third_party/WebKit/Source/wtf",
78 "//third_party/zlib", 78 "//third_party/zlib",
79 "//third_party:jpeg", 79 "//third_party:jpeg",
80 "//tools/gn", 80 "//tools/gn",
81 "//ui/aura",
81 "//ui/accessibility", 82 "//ui/accessibility",
82 "//ui/base", 83 "//ui/base",
83 "//ui/events", 84 "//ui/events",
84 "//ui/gfx", 85 "//ui/gfx",
85 "//ui/gl", 86 "//ui/gl",
86 "//ui/native_theme", 87 "//ui/native_theme",
87 "//ui/resources", 88 "//ui/resources",
88 "//ui/snapshot", 89 "//ui/snapshot",
89 "//ui/strings", 90 "//ui/strings",
90 "//ui/surface", 91 "//ui/surface",
(...skipping 25 matching lines...) Expand all
116 117
117 if (is_android) { 118 if (is_android) {
118 deps -= [ 119 deps -= [
119 "//cc", 120 "//cc",
120 "//content/public/common", 121 "//content/public/common",
121 "//content/public/renderer", 122 "//content/public/renderer",
122 "//dbus", 123 "//dbus",
123 "//extensions/common/api:extensions_api", 124 "//extensions/common/api:extensions_api",
124 "//pdf", # Not compiled on Android in GYP yet, either. 125 "//pdf", # Not compiled on Android in GYP yet, either.
125 "//ppapi:ppapi_c", 126 "//ppapi:ppapi_c",
127 "//sandbox",
126 "//third_party/libusb", 128 "//third_party/libusb",
127 # "//third_party/WebKit/Source/platform", 129 # "//third_party/WebKit/Source/platform",
128 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. 130 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android.
129 "//sandbox",
130 "//tools/gn", 131 "//tools/gn",
132 "//ui/aura",
131 133
132 # Not tested on Android yet: 134 # Not tested on Android yet:
133 "//webkit/browser:storage", 135 "//webkit/browser:storage",
134 "//webkit/child", 136 "//webkit/child",
135 ] 137 ]
136 } 138 }
137 } 139 }
OLDNEW
« no previous file with comments | « no previous file | build/config/linux/BUILD.gn » ('j') | ui/gfx/x/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698