OLD | NEW |
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 # App different than the regular content subcomponents (see comments in | 5 # App different than the regular content subcomponents (see comments in |
6 # //content/BUILD.gn) because it has to support the browser/child process split | 6 # //content/BUILD.gn) because it has to support the browser/child process split |
7 # (the "both" target include both browser and child process files and is used | 7 # (the "both" target include both browser and child process files and is used |
8 # for testing). | 8 # for testing). |
9 # | 9 # |
10 # In non-component mode, browser, child, and both all follow the same structure: | 10 # In non-component mode, browser, child, and both all follow the same structure: |
11 # foo -> | 11 # foo -> |
12 # //content/public/app:child (group) -> | 12 # //content/public/app:child (group) -> |
13 # //content/public/app:child_sources (source set) -> | 13 # //content/public/app:child_sources (source set) -> |
14 # //content/app:child (source set) | 14 # //content/app:child (source set) |
15 | 15 |
16 # In component mode, content is linked as one big turd so there is only one | 16 # In component mode, content is linked as one big turd so there is only one |
17 # app target containing sources ("both") and the other ones forward to it: | 17 # app target containing sources ("both") and the other ones forward to it: |
18 # foo -> | 18 # foo -> |
19 # //content/public/app:child (group; "browser" and "both" ones look the same) | 19 # //content/public/app:child (group; "browser" and "both" ones look the same) |
20 # //content (shared library) -> | 20 # //content (shared library) -> |
21 # //content/public/app:both_sources (source set) | 21 # //content/public/app:both_sources (source set) |
22 | 22 |
| 23 import("//build/config/chrome_build.gni") |
| 24 |
23 public_app_shared_sources = [ | 25 public_app_shared_sources = [ |
24 "content_jni_onload.h", | 26 "content_jni_onload.h", |
25 "content_main.h", | 27 "content_main.h", |
26 "content_main_delegate.cc", | 28 "content_main_delegate.cc", |
27 "content_main_delegate.h", | 29 "content_main_delegate.h", |
28 "content_main_runner.h", | 30 "content_main_runner.h", |
29 "startup_helper_win.h", | 31 "startup_helper_win.h", |
30 ] | 32 ] |
31 | 33 |
32 public_app_shared_deps = [ | 34 public_app_shared_deps = [ |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 | 86 |
85 sources = public_app_shared_sources | 87 sources = public_app_shared_sources |
86 configs += [ "//content:content_implementation" ] | 88 configs += [ "//content:content_implementation" ] |
87 deps = public_app_shared_deps + [ | 89 deps = public_app_shared_deps + [ |
88 "//content/app:both", | 90 "//content/app:both", |
89 "//content/public/browser", | 91 "//content/public/browser", |
90 "//content/public/common", | 92 "//content/public/common", |
91 ] | 93 ] |
92 } | 94 } |
93 | 95 |
94 # TODO(GYP) enable chrome_multiple_dll support | 96 if (is_multi_dll_chrome) { |
95 is_chrome_multiple_dll = false | |
96 | |
97 if (is_chrome_multiple_dll) { | |
98 source_set("browser") { | 97 source_set("browser") { |
99 check_includes = false # See comment above. | 98 check_includes = false # See comment above. |
100 | 99 |
101 sources = public_app_shared_sources | 100 sources = public_app_shared_sources |
102 | 101 |
103 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ] | 102 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ] |
104 configs += [ "//content:content_implementation" ] | 103 configs += [ "//content:content_implementation" ] |
105 | 104 |
106 deps = public_app_shared_deps + [ | 105 deps = public_app_shared_deps + [ |
107 "//content/app:browser", | 106 "//content/app:browser", |
(...skipping 23 matching lines...) Expand all Loading... |
131 ":both", | 130 ":both", |
132 ] | 131 ] |
133 } | 132 } |
134 group("child") { | 133 group("child") { |
135 deps = [ | 134 deps = [ |
136 ":both", | 135 ":both", |
137 ] | 136 ] |
138 } | 137 } |
139 } | 138 } |
140 } | 139 } |
OLD | NEW |