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

Side by Side Diff: content/public/common/BUILD.gn

Issue 2081183005: Use ChannelMojo from the browser to NaCl loader process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-ipc-channel-handle
Patch Set: rebase Created 4 years, 5 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//content/common/common.gni") 8 import("//content/common/common.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 import("//third_party/webrtc/build/webrtc.gni") 10 import("//third_party/webrtc/build/webrtc.gni")
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 defines = [ "MOJO_SHELL_CLIENT" ] 61 defines = [ "MOJO_SHELL_CLIENT" ]
62 } 62 }
63 } 63 }
64 64
65 # This target allows you to use the content_switches constants and statically 65 # This target allows you to use the content_switches constants and statically
66 # link to it, without depending on the rest of content. This is only for use 66 # link to it, without depending on the rest of content. This is only for use
67 # without content, or you will get multiply defined symbols. 67 # without content, or you will get multiply defined symbols.
68 source_set("static_switches") { 68 source_set("static_switches") {
69 public = [ 69 public = [
70 "content_switches.h", 70 "content_switches.h",
71 "mojo_channel_switches.h",
71 ] 72 ]
72 sources = [ 73 sources = [
73 "//content/common/content_export.h", 74 "//content/common/content_export.h",
74 "content_switches.cc", 75 "content_switches.cc",
76 "mojo_channel_switches.cc",
75 ] 77 ]
76 78
77 public_configs = [ ":static_switches_defines" ] 79 public_configs = [ ":static_switches_defines" ]
78 } 80 }
79 81
80 source_set("common_sources") { 82 source_set("common_sources") {
81 # External code should depend on via ":common" above. 83 # External code should depend on via ":common" above.
82 visibility = [ "//content/*" ] 84 visibility = [ "//content/*" ]
83 85
84 sources = rebase_path(content_common_gypi_values.public_common_sources, 86 sources = rebase_path(content_common_gypi_values.public_common_sources,
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 source_set("feature_h264_with_openh264_ffmpeg") { 148 source_set("feature_h264_with_openh264_ffmpeg") {
147 deps = [ 149 deps = [
148 ":features", 150 ":features",
149 "//base", 151 "//base",
150 ] 152 ]
151 sources = [ 153 sources = [
152 "feature_h264_with_openh264_ffmpeg.cc", 154 "feature_h264_with_openh264_ffmpeg.cc",
153 "feature_h264_with_openh264_ffmpeg.h", 155 "feature_h264_with_openh264_ffmpeg.h",
154 ] 156 ]
155 } 157 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698