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

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

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 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/web_cache/renderer/web_cache_impl.cc ('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 7
8 # Implements "content_main" given the defines and visibility. On Windows this 8 # Implements "content_main" given the defines and visibility. On Windows this
9 # is compiled with a different define for browser and child, but all code needs 9 # is compiled with a different define for browser and child, but all code needs
10 # to be shared. 10 # to be shared.
11 template("implement_content_app") { 11 template("implement_content_app") {
12 runner_target_name = "content_main_runner_" + target_name 12 runner_target_name = "content_main_runner_" + target_name
13 main_target_name = target_name 13 main_target_name = target_name
14 14
15 extra_configs = [ 15 extra_configs = [
16 "//build/config/compiler:wexit_time_destructors", 16 "//build/config/compiler:wexit_time_destructors",
17 "//content:content_implementation", 17 "//content:content_implementation",
18 "//v8:external_startup_data", 18 "//v8:external_startup_data",
19 ] 19 ]
20 20
21 content_app_deps = [ 21 content_app_deps = [
22 "//base", 22 "//base",
23 "//base:i18n", 23 "//base:i18n",
24 "//components/tracing:startup_tracing", 24 "//components/tracing:startup_tracing",
25 "//content:export", 25 "//content:export",
26 "//content:sandbox_helper_win", 26 "//content:sandbox_helper_win",
27 "//content/public/common:common_sources", 27 "//content/public/common:common_sources",
28 "//crypto", 28 "//crypto",
29 "//services/shell/public/interfaces", 29 "//services/service_manager/public/interfaces",
30 "//mojo/edk/system", 30 "//mojo/edk/system",
31 "//third_party/WebKit/public:mojo_bindings", 31 "//third_party/WebKit/public:mojo_bindings",
32 "//ui/base", 32 "//ui/base",
33 "//ui/gfx", 33 "//ui/gfx",
34 "//ui/gfx/geometry", 34 "//ui/gfx/geometry",
35 ] 35 ]
36 36
37 if (is_win) { 37 if (is_win) {
38 content_app_deps += [ "//sandbox" ] 38 content_app_deps += [ "//sandbox" ]
39 } else if (is_android) { 39 } else if (is_android) {
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 implement_content_app("browser") { 159 implement_content_app("browser") {
160 visibility = [ "//content/public/app:browser" ] 160 visibility = [ "//content/public/app:browser" ]
161 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ] 161 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ]
162 } 162 }
163 163
164 implement_content_app("child") { 164 implement_content_app("child") {
165 visibility = [ "//content/public/app:child" ] 165 visibility = [ "//content/public/app:child" ]
166 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] 166 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ]
167 } 167 }
168 } 168 }
OLDNEW
« no previous file with comments | « components/web_cache/renderer/web_cache_impl.cc ('k') | content/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698