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

Side by Side Diff: content/common/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, 10 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("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 if (is_mac) { 10 if (is_mac) {
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 127
128 source_set("common") { 128 source_set("common") {
129 # Only the public target should depend on this. All other targets (even 129 # Only the public target should depend on this. All other targets (even
130 # internal content ones) should depend on the public one. 130 # internal content ones) should depend on the public one.
131 visibility = [ "//content/public/common:common_sources" ] 131 visibility = [ "//content/public/common:common_sources" ]
132 132
133 sources = rebase_path(content_common_gypi_values.private_common_sources, 133 sources = rebase_path(content_common_gypi_values.private_common_sources,
134 ".", 134 ".",
135 "//content") 135 "//content")
136 136
137 # These files are only built in a GN build because they bring in
138 # dependencies that don't build with GYP.
139 sources += [
140 "mojo/mojo_shell_connection_impl.cc",
141 "mojo/mojo_shell_connection_impl.h",
142 ]
143
144 configs += [ 137 configs += [
145 "//content:content_implementation", 138 "//content:content_implementation",
146 "//build/config:precompiled_headers", 139 "//build/config:precompiled_headers",
147 "//build/config/compiler:no_size_t_to_int_warning", 140 "//build/config/compiler:no_size_t_to_int_warning",
148 ] 141 ]
149 142
150 public_deps = [ 143 public_deps = [
151 "//gpu/command_buffer/common", 144 "//gpu/command_buffer/common",
152 "//ipc", 145 "//ipc",
153 "//third_party/WebKit/public:blink_headers", 146 "//third_party/WebKit/public:blink_headers",
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 import_dirs = [ "//mojo/services" ] 539 import_dirs = [ "//mojo/services" ]
547 540
548 public_deps = [ 541 public_deps = [
549 "//components/mus/public/interfaces", 542 "//components/mus/public/interfaces",
550 "//content/public/common:mojo_bindings", 543 "//content/public/common:mojo_bindings",
551 "//mojo/shell/public/interfaces", 544 "//mojo/shell/public/interfaces",
552 "//skia/public/interfaces", 545 "//skia/public/interfaces",
553 "//ui/mojo/geometry:interfaces", 546 "//ui/mojo/geometry:interfaces",
554 ] 547 ]
555 } 548 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698