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

Side by Side Diff: BUILD.gn

Issue 539143002: Migrate webkit/browser/ to storage/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 "//ui/resources", 116 "//ui/resources",
117 "//ui/snapshot", 117 "//ui/snapshot",
118 "//ui/strings", 118 "//ui/strings",
119 "//ui/surface", 119 "//ui/surface",
120 "//ui/views", 120 "//ui/views",
121 "//ui/views/controls/webview", 121 "//ui/views/controls/webview",
122 "//ui/web_dialogs", 122 "//ui/web_dialogs",
123 "//ui/wm", 123 "//ui/wm",
124 "//url", 124 "//url",
125 "//v8:v8", 125 "//v8:v8",
126 "//webkit/browser:storage", 126 "//storage/browser",
jamesr 2014/09/05 01:02:30 please keep this alphabetical
127 "//webkit/child", 127 "//webkit/child",
128 ] 128 ]
129 129
130 if (!is_win) { 130 if (!is_win) {
131 deps += [ "//breakpad:symupload" ] 131 deps += [ "//breakpad:symupload" ]
132 } 132 }
133 133
134 if (is_linux) { 134 if (is_linux) {
135 deps += [ 135 deps += [
136 "//dbus", 136 "//dbus",
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 # Not tested on Android yet: 218 # Not tested on Android yet:
219 "//google_apis/gcm", 219 "//google_apis/gcm",
220 "//remoting/client/plugin", 220 "//remoting/client/plugin",
221 "//third_party/cld_2", 221 "//third_party/cld_2",
222 "//third_party/libaddressinput", 222 "//third_party/libaddressinput",
223 "//third_party/ffmpeg", 223 "//third_party/ffmpeg",
224 "//ui:ui_unittests", 224 "//ui:ui_unittests",
225 "//ui/app_list", 225 "//ui/app_list",
226 "//ui/web_dialogs", 226 "//ui/web_dialogs",
227 "//ui/wm", 227 "//ui/wm",
228 "//webkit/browser:storage", 228 "//storage/browser",
jamesr 2014/09/05 01:02:30 ditto
229 "//webkit/child", 229 "//webkit/child",
230 ] 230 ]
231 } 231 }
232 232
233 if (use_ozone) { 233 if (use_ozone) {
234 deps += [ 234 deps += [
235 "//ui/ozone", 235 "//ui/ozone",
236 "//ui/ozone/demo", 236 "//ui/ozone/demo",
237 ] 237 ]
238 } 238 }
239 239
240 # Non-mobile builds. 240 # Non-mobile builds.
241 if (!is_android && !is_ios) { 241 if (!is_android && !is_ios) {
242 deps += [ 242 deps += [
243 "//device/usb", 243 "//device/usb",
244 ] 244 ]
245 } 245 }
246 } 246 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/native/webview_native.gyp » ('j') | android_webview/native/webview_native.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698