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

Side by Side Diff: chrome/browser/BUILD.gn

Issue 1350023003: Add a Mojo EDK for Chrome that uses one OS pipe per message pipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move to mojo::edk namespace in preparation for runtim flag Created 5 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 10
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 "//mojo/environment:chromium", 307 "//mojo/environment:chromium",
308 "//net:extras", 308 "//net:extras",
309 "//net:net_with_v8", 309 "//net:net_with_v8",
310 "//storage/browser", 310 "//storage/browser",
311 "//storage/common", 311 "//storage/common",
312 "//third_party/WebKit/public:image_resources", 312 "//third_party/WebKit/public:image_resources",
313 "//third_party/WebKit/public:resources", 313 "//third_party/WebKit/public:resources",
314 "//third_party/leveldatabase", 314 "//third_party/leveldatabase",
315 "//third_party/libaddressinput", 315 "//third_party/libaddressinput",
316 "//third_party/libyuv", 316 "//third_party/libyuv",
317 "//third_party/mojo/src/mojo/edk/system",
318 "//third_party/mojo/src/mojo/public/cpp/bindings", 317 "//third_party/mojo/src/mojo/public/cpp/bindings",
319 "//third_party/mojo/src/mojo/public/js", 318 "//third_party/mojo/src/mojo/public/js",
320 "//third_party/re2", 319 "//third_party/re2",
321 "//third_party/smhasher:cityhash", 320 "//third_party/smhasher:cityhash",
322 "//third_party/webrtc/modules/desktop_capture", 321 "//third_party/webrtc/modules/desktop_capture",
323 "//ui/base/ime", 322 "//ui/base/ime",
324 "//ui/gl", 323 "//ui/gl",
325 "//ui/resources", 324 "//ui/resources",
326 "//ui/surface", 325 "//ui/surface",
327 "//ui/web_dialogs", 326 "//ui/web_dialogs",
328 "//v8", 327 "//v8",
329 ] 328 ]
330 329
330 if (use_chrome_edk) {
Ken Rockot(use gerrit already) 2015/09/23 22:32:17 What if we added a few new group targets to //mojo
331 deps += [ "//mojo/edk/system" ]
332 } else {
333 deps += [ "//third_party/mojo/src/mojo/edk/system" ]
334 }
335
331 if (toolkit_views) { 336 if (toolkit_views) {
332 deps += [ "//ui/views" ] 337 deps += [ "//ui/views" ]
333 } 338 }
334 } else { # iOS 339 } else { # iOS
335 sources += 340 sources +=
336 rebase_path(gypi_values.chrome_browser_ios_sources, ".", "//chrome") 341 rebase_path(gypi_values.chrome_browser_ios_sources, ".", "//chrome")
337 sources += 342 sources +=
338 rebase_path(gypi_values.chrome_browser_google_sources, ".", "//chrome") 343 rebase_path(gypi_values.chrome_browser_google_sources, ".", "//chrome")
339 deps += [ "//net" ] 344 deps += [ "//net" ]
340 libs += [ 345 libs += [
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1256 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1252 deps = [ 1257 deps = [
1253 "//components/google/core/browser", 1258 "//components/google/core/browser",
1254 "//components/omnibox/browser", 1259 "//components/omnibox/browser",
1255 "//components/rlz", 1260 "//components/rlz",
1256 "//components/search_engines", 1261 "//components/search_engines",
1257 "//rlz:rlz_lib", 1262 "//rlz:rlz_lib",
1258 ] 1263 ]
1259 } 1264 }
1260 } 1265 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698