| 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: |
| (...skipping 10 matching lines...) Expand all Loading... |
| 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") | 23 import("//build/config/chrome_build.gni") |
| 24 | 24 |
| 25 public_app_shared_sources = [ | 25 public_app_shared_sources = [ |
| 26 "content_jni_onload.h", | 26 "content_jni_onload.h", |
| 27 "content_main.h", | 27 "content_main.h", |
| 28 "content_main_delegate.cc", | 28 "content_main_delegate.cc", |
| 29 "content_main_delegate.h", | 29 "content_main_delegate.h", |
| 30 "content_main_runner.h", | 30 "content_main_runner.h", |
| 31 "startup_helper_win.h", | 31 "sandbox_helper_win.h", |
| 32 ] | 32 ] |
| 33 | 33 |
| 34 public_app_shared_deps = [ | 34 public_app_shared_deps = [ |
| 35 "//base", | 35 "//base", |
| 36 "//base:i18n", | 36 "//base:i18n", |
| 37 "//content:export", | 37 "//content:export", |
| 38 "//content/public/common:common_sources", | 38 "//content/public/common:common_sources", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 if (is_component_build) { | 41 if (is_component_build) { |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 ":both", | 130 ":both", |
| 131 ] | 131 ] |
| 132 } | 132 } |
| 133 group("child") { | 133 group("child") { |
| 134 deps = [ | 134 deps = [ |
| 135 ":both", | 135 ":both", |
| 136 ] | 136 ] |
| 137 } | 137 } |
| 138 } | 138 } |
| 139 } | 139 } |
| OLD | NEW |