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

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

Issue 681213002: GN: Remove content/app -> mojo/application_manager dep (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 | no next file » | 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 # TODO(GYP) enable chrome_multiple_dll support 5 # TODO(GYP) enable chrome_multiple_dll support
6 is_chrome_multiple_dll = false 6 is_chrome_multiple_dll = false
7 7
8 content_app_sources = [ 8 content_app_sources = [
9 "android/app_jni_registrar.cc", 9 "android/app_jni_registrar.cc",
10 "android/app_jni_registrar.h", 10 "android/app_jni_registrar.h",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 } 47 }
48 48
49 if (is_ios) { 49 if (is_ios) {
50 content_app_sources -= [ 50 content_app_sources -= [
51 "content_main.cc", 51 "content_main.cc",
52 "mojo/mojo_init.cc", 52 "mojo/mojo_init.cc",
53 "mojo/mojo_init.h", 53 "mojo/mojo_init.h",
54 ] 54 ]
55 } else { 55 } else {
56 content_app_deps += [ 56 content_app_deps += [
57 "//mojo/application_manager",
58 "//mojo/edk/system", 57 "//mojo/edk/system",
59 "//mojo/environment:chromium", 58 "//mojo/environment:chromium",
60 "//mojo/public/interfaces/application", 59 "//mojo/public/interfaces/application",
61 ] 60 ]
62 } 61 }
63 62
64 content_app_extra_configs = [ 63 content_app_extra_configs = [
65 "//build/config/compiler:wexit_time_destructors", 64 "//build/config/compiler:wexit_time_destructors",
66 "//content:content_implementation", 65 "//content:content_implementation",
67 ] 66 ]
(...skipping 30 matching lines...) Expand all
98 source_set("child") { 97 source_set("child") {
99 visibility = [ "//content/public/app:child" ] 98 visibility = [ "//content/public/app:child" ]
100 99
101 sources = content_app_sources 100 sources = content_app_sources
102 configs += content_app_extra_configs 101 configs += content_app_extra_configs
103 deps = content_app_deps 102 deps = content_app_deps
104 103
105 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ] 104 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ]
106 } 105 }
107 } 106 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698