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

Side by Side Diff: content/common/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, 2 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/common/common.gni") 7 import("//content/common/common.gni")
8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
9 if (is_mac) { 9 if (is_mac) {
10 import("//build/config/mac/mac_sdk.gni") 10 import("//build/config/mac/mac_sdk.gni")
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 "//gpu/skia_bindings", 184 "//gpu/skia_bindings",
185 "//media", 185 "//media",
186 "//media/midi", 186 "//media/midi",
187 "//media:shared_memory_support", 187 "//media:shared_memory_support",
188 "//mojo/application/public/interfaces", 188 "//mojo/application/public/interfaces",
189 "//mojo/common:common_base", 189 "//mojo/common:common_base",
190 "//mojo/environment:chromium", 190 "//mojo/environment:chromium",
191 "//sandbox", 191 "//sandbox",
192 "//storage/common", 192 "//storage/common",
193 "//third_party/WebKit/public:blink", 193 "//third_party/WebKit/public:blink",
194 "//third_party/mojo/src/mojo/edk/system",
195 "//ui/gl", 194 "//ui/gl",
196 ":mojo_bindings", 195 ":mojo_bindings",
197 ] 196 ]
197
198 if (use_chrome_edk) {
199 deps += [ "//mojo/edk/system" ]
200 } else {
201 deps += [ "//third_party/mojo/src/mojo/edk/system" ]
202 }
198 } 203 }
199 204
200 defines = [] 205 defines = []
201 include_dirs = [] 206 include_dirs = []
202 libs = [] 207 libs = []
203 ldflags = [] 208 ldflags = []
204 209
205 if (is_android && use_seccomp_bpf) { 210 if (is_android && use_seccomp_bpf) {
206 set_sources_assignment_filter([]) 211 set_sources_assignment_filter([])
207 sources += [ 212 sources += [
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 514
510 import_dirs = [ "//mojo/services" ] 515 import_dirs = [ "//mojo/services" ]
511 516
512 deps = [ 517 deps = [
513 "//content/public/common:mojo_bindings", 518 "//content/public/common:mojo_bindings",
514 "//mojo/application/public/interfaces", 519 "//mojo/application/public/interfaces",
515 "//skia/public/interfaces", 520 "//skia/public/interfaces",
516 "//ui/mojo/geometry:interfaces", 521 "//ui/mojo/geometry:interfaces",
517 ] 522 ]
518 } 523 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698