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

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

Issue 1104973002: Fix //content/test:test_support under component builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | « content/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 # 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 "//third_party/mojo/src/mojo/public/interfaces/application", 65 "//third_party/mojo/src/mojo/public/interfaces/application",
66 ] 66 ]
67 } 67 }
68 68
69 content_app_extra_configs = [ 69 content_app_extra_configs = [
70 "//build/config/compiler:wexit_time_destructors", 70 "//build/config/compiler:wexit_time_destructors",
71 "//content:content_implementation", 71 "//content:content_implementation",
72 ] 72 ]
73 73
74 if (!is_chrome_multiple_dll) { 74 if (!is_chrome_multiple_dll) {
75 content_app_deps += [ "//content/gpu" ] 75 content_app_deps += [ "//content/gpu:gpu_sources" ]
76 } 76 }
77 77
78 # This includes the app sources for both the browser and child processes. 78 # This includes the app sources for both the browser and child processes.
79 source_set("both") { 79 source_set("both") {
80 # Only the public target should depend on this. All other targets (even 80 # Only the public target should depend on this. All other targets (even
81 # internal content ones) should depend on the public one. 81 # internal content ones) should depend on the public one.
82 visibility = [ "//content/public/app:*" ] 82 visibility = [ "//content/public/app:*" ]
83 83
84 sources = content_app_sources 84 sources = content_app_sources
85 configs += content_app_extra_configs 85 configs += content_app_extra_configs
(...skipping 17 matching lines...) Expand all
103 source_set("child") { 103 source_set("child") {
104 visibility = [ "//content/public/app:child" ] 104 visibility = [ "//content/public/app:child" ]
105 105
106 sources = content_app_sources 106 sources = content_app_sources
107 configs += content_app_extra_configs 107 configs += content_app_extra_configs
108 deps = content_app_deps 108 deps = content_app_deps
109 109
110 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ] 110 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ]
111 } 111 }
112 } 112 }
OLDNEW
« no previous file with comments | « content/BUILD.gn ('k') | content/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698