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

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

Issue 1738663002: Hook embedded shell up to MojoShellConnection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « no previous file | content/browser/browser_child_process_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/browser/browser.gni") 7 import("//content/browser/browser.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("browser") { 10 source_set("browser") {
(...skipping 25 matching lines...) Expand all
36 "//content/public/common:mojo_bindings", 36 "//content/public/common:mojo_bindings",
37 "//crypto", 37 "//crypto",
38 "//device/battery", 38 "//device/battery",
39 "//device/vibration", 39 "//device/vibration",
40 "//google_apis", 40 "//google_apis",
41 "//mojo/common", 41 "//mojo/common",
42 "//mojo/public/cpp/bindings", 42 "//mojo/public/cpp/bindings",
43 "//mojo/shell", 43 "//mojo/shell",
44 "//mojo/shell/public/cpp:cpp_for_chromium", 44 "//mojo/shell/public/cpp:cpp_for_chromium",
45 "//mojo/shell/public/interfaces", 45 "//mojo/shell/public/interfaces",
46 "//mojo/shell/runner/host:lib",
46 "//net", 47 "//net",
47 "//net:extras", 48 "//net:extras",
48 "//skia", 49 "//skia",
49 "//sql", 50 "//sql",
50 "//third_party/WebKit/public:blink_headers", 51 "//third_party/WebKit/public:blink_headers",
51 "//third_party/kasko:kasko_features", 52 "//third_party/kasko:kasko_features",
52 "//third_party/npapi", 53 "//third_party/npapi",
53 "//third_party/re2", 54 "//third_party/re2",
54 "//third_party/zlib", 55 "//third_party/zlib",
55 "//third_party/zlib:zip", 56 "//third_party/zlib:zip",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 sources -= rebase_path( 101 sources -= rebase_path(
101 [ 102 [
102 "$root_gen_dir/blink/grit/devtools_resources.h", 103 "$root_gen_dir/blink/grit/devtools_resources.h",
103 "$root_gen_dir/blink/grit/devtools_resources_map.cc", 104 "$root_gen_dir/blink/grit/devtools_resources_map.cc",
104 "$root_gen_dir/blink/grit/devtools_resources_map.h", 105 "$root_gen_dir/blink/grit/devtools_resources_map.h",
105 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", 106 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h",
106 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", 107 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc",
107 ], 108 ],
108 ".") 109 ".")
109 110
110 sources += [
111 "mojo/mojo_shell_client_host.cc",
112 "mojo/mojo_shell_client_host.h",
113 "mojo/renderer_capability_filter.cc",
114 ]
115
116 # Non-iOS deps. 111 # Non-iOS deps.
117 deps += [ 112 deps += [
118 "//cc", 113 "//cc",
119 "//cc/surfaces", 114 "//cc/surfaces",
120 "//components/leveldb:lib", 115 "//components/leveldb:lib",
121 "//components/scheduler:common", 116 "//components/scheduler:common",
122 "//content/app/resources", 117 "//content/app/resources",
123 "//content/app/strings", 118 "//content/app/strings",
124 "//content/browser/devtools:gen_devtools_protocol_handler", 119 "//content/browser/devtools:gen_devtools_protocol_handler",
125 "//content/browser/devtools:resources", 120 "//content/browser/devtools:resources",
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 530
536 if (enable_webvr && is_android) { 531 if (enable_webvr && is_android) {
537 sources += [ 532 sources += [
538 "vr/android/cardboard/cardboard_vr_device.cc", 533 "vr/android/cardboard/cardboard_vr_device.cc",
539 "vr/android/cardboard/cardboard_vr_device.h", 534 "vr/android/cardboard/cardboard_vr_device.h",
540 "vr/android/cardboard/cardboard_vr_device_provider.cc", 535 "vr/android/cardboard/cardboard_vr_device_provider.cc",
541 "vr/android/cardboard/cardboard_vr_device_provider.h", 536 "vr/android/cardboard/cardboard_vr_device_provider.h",
542 ] 537 ]
543 } 538 }
544 } 539 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/browser_child_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698