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

Side by Side Diff: content/BUILD.gn

Issue 2104553002: Migrate GpuProcess to use MojoChild/ShellConnection for the Shell handshake (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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
« no previous file with comments | « no previous file | content/browser/gpu/gpu_process_host.h » ('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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 import("//build/config/nacl/config.gni") 6 import("//build/config/nacl/config.gni")
7 7
8 # Applied by targets internal to content. 8 # Applied by targets internal to content.
9 config("content_implementation") { 9 config("content_implementation") {
10 defines = [ "CONTENT_IMPLEMENTATION" ] 10 defines = [ "CONTENT_IMPLEMENTATION" ]
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 outputs = [ 109 outputs = [
110 "grit/content_resources.h", 110 "grit/content_resources.h",
111 "content_resources.pak", 111 "content_resources.pak",
112 ] 112 ]
113 grit_flags = [ 113 grit_flags = [
114 "-E", 114 "-E",
115 "root_out_dir=" + rebase_path(root_out_dir, root_build_dir), 115 "root_out_dir=" + rebase_path(root_out_dir, root_build_dir),
116 ] 116 ]
117 deps = [ 117 deps = [
118 "//content/public/app:browser_manifest", 118 "//content/public/app:browser_manifest",
119 "//content/public/app:gpu_manifest",
119 "//content/public/app:renderer_manifest", 120 "//content/public/app:renderer_manifest",
120 "//services/catalog:manifest", 121 "//services/catalog:manifest",
121 ] 122 ]
122 } 123 }
123 124
124 # This target exists to "hold" the content_export header so we can do proper 125 # This target exists to "hold" the content_export header so we can do proper
125 # inclusion testing of it. 126 # inclusion testing of it.
126 source_set("export") { 127 source_set("export") {
127 # Must only be used inside of content. 128 # Must only be used inside of content.
128 visibility = [ "//content/*" ] 129 visibility = [ "//content/*" ]
(...skipping 10 matching lines...) Expand all
139 sources = [ 140 sources = [
140 "app/sandbox_helper_win.cc", 141 "app/sandbox_helper_win.cc",
141 "public/app/sandbox_helper_win.h", 142 "public/app/sandbox_helper_win.h",
142 ] 143 ]
143 144
144 deps = [ 145 deps = [
145 "//sandbox", 146 "//sandbox",
146 ] 147 ]
147 } 148 }
148 } 149 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/gpu/gpu_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698