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

Side by Side Diff: content/renderer/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/renderer/renderer.gni") 7 import("//content/renderer/renderer.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("renderer") { 10 source_set("renderer") {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "//mojo/application/public/interfaces", 46 "//mojo/application/public/interfaces",
47 "//mojo/environment:chromium", 47 "//mojo/environment:chromium",
48 "//mojo/common:url_type_converters", 48 "//mojo/common:url_type_converters",
49 "//mojo/converters/geometry", 49 "//mojo/converters/geometry",
50 "//net", 50 "//net",
51 "//skia", 51 "//skia",
52 "//skia/public", 52 "//skia/public",
53 "//storage/common", 53 "//storage/common",
54 "//third_party/icu", 54 "//third_party/icu",
55 "//third_party/libjingle", 55 "//third_party/libjingle",
56 "//third_party/mojo/src/mojo/edk/js",
57 "//third_party/mojo/src/mojo/public/cpp/bindings", 56 "//third_party/mojo/src/mojo/public/cpp/bindings",
58 "//third_party/mojo/src/mojo/public/js", 57 "//third_party/mojo/src/mojo/public/js",
59 "//third_party/npapi", 58 "//third_party/npapi",
60 "//third_party/WebKit/public:blink", 59 "//third_party/WebKit/public:blink",
61 "//third_party/widevine/cdm:version_h", 60 "//third_party/widevine/cdm:version_h",
62 "//ui/accessibility", 61 "//ui/accessibility",
63 "//ui/base", 62 "//ui/base",
64 "//ui/events:events_base", 63 "//ui/events:events_base",
65 "//ui/events:dom_keycode_converter", 64 "//ui/events:dom_keycode_converter",
66 "//ui/gl", 65 "//ui/gl",
67 "//ui/native_theme", 66 "//ui/native_theme",
68 "//ui/surface", 67 "//ui/surface",
69 "//v8", 68 "//v8",
70 ] 69 ]
71 70
71 if (use_chrome_edk) {
72 deps += [ "//mojo/edk/js" ]
73 } else {
74 deps += [ "//third_party/mojo/src/mojo/edk/js" ]
75 }
76
72 if (is_mac) { 77 if (is_mac) {
73 sources -= [ 78 sources -= [
74 "webscrollbarbehavior_impl_gtkoraura.cc", 79 "webscrollbarbehavior_impl_gtkoraura.cc",
75 "webscrollbarbehavior_impl_gtkoraura.h", 80 "webscrollbarbehavior_impl_gtkoraura.h",
76 ] 81 ]
77 sources += [ 82 sources += [
78 "external_popup_menu.cc", 83 "external_popup_menu.cc",
79 "external_popup_menu.h", 84 "external_popup_menu.h",
80 ] 85 ]
81 } 86 }
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 214
210 if (enable_webvr) { 215 if (enable_webvr) {
211 sources += [ 216 sources += [
212 "vr/vr_dispatcher.cc", 217 "vr/vr_dispatcher.cc",
213 "vr/vr_dispatcher.h", 218 "vr/vr_dispatcher.h",
214 "vr/vr_type_converters.cc", 219 "vr/vr_type_converters.cc",
215 "vr/vr_type_converters.h", 220 "vr/vr_type_converters.h",
216 ] 221 ]
217 } 222 }
218 } 223 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698