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

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

Issue 2668153003: Mojo C++ Bindings: Eliminate unbound ThreadSafeInterfacePtr (Closed)
Patch Set: format and rebase... Created 3 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
« no previous file with comments | « components/nacl/common/BUILD.gn ('k') | content/browser/BUILD.gn » ('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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//ppapi/features/features.gni") 7 import("//ppapi/features/features.gni")
8 8
9 # Implements "content_main" given the defines and visibility. On Windows this 9 # Implements "content_main" given the defines and visibility. On Windows this
10 # is compiled with a different define for browser and child, but all code needs 10 # is compiled with a different define for browser and child, but all code needs
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "android/content_main.cc", 119 "android/content_main.cc",
120 "android/content_main.h", 120 "android/content_main.h",
121 "android/library_loader_hooks.cc", 121 "android/library_loader_hooks.cc",
122 "android/library_loader_hooks.h", 122 "android/library_loader_hooks.h",
123 ] 123 ]
124 } else { 124 } else {
125 sources += [ "content_main.cc" ] 125 sources += [ "content_main.cc" ]
126 } 126 }
127 127
128 configs += extra_configs 128 configs += extra_configs
129 deps = content_app_deps + [ ":$runner_target_name" ] 129 deps = content_app_deps + [
130 ":$runner_target_name",
131 "//ipc",
132 ]
130 forward_variables_from(invoker, 133 forward_variables_from(invoker,
131 [ 134 [
132 "defines", 135 "defines",
133 "visibility", 136 "visibility",
134 ]) 137 ])
135 } 138 }
136 } 139 }
137 140
138 # This includes the app sources for both the browser and child processes. 141 # This includes the app sources for both the browser and child processes.
139 implement_content_app("both") { 142 implement_content_app("both") {
(...skipping 22 matching lines...) Expand all
162 implement_content_app("browser") { 165 implement_content_app("browser") {
163 visibility = [ "//content/public/app:browser" ] 166 visibility = [ "//content/public/app:browser" ]
164 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ] 167 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ]
165 } 168 }
166 169
167 implement_content_app("child") { 170 implement_content_app("child") {
168 visibility = [ "//content/public/app:child" ] 171 visibility = [ "//content/public/app:child" ]
169 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] 172 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ]
170 } 173 }
171 } 174 }
OLDNEW
« no previous file with comments | « components/nacl/common/BUILD.gn ('k') | content/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698