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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 | 6 |
7 content_app_sources = [ | 7 content_app_sources = [ |
8 "android/app_jni_registrar.cc", | 8 "android/app_jni_registrar.cc", |
9 "android/app_jni_registrar.h", | 9 "android/app_jni_registrar.h", |
10 "android/child_process_service.cc", | 10 "android/child_process_service.cc", |
11 "android/child_process_service.h", | 11 "android/child_process_service.h", |
12 "android/content_jni_onload.cc", | 12 "android/content_jni_onload.cc", |
13 "android/content_main.cc", | 13 "android/content_main.cc", |
14 "android/content_main.h", | 14 "android/content_main.h", |
15 "android/library_loader_hooks.cc", | 15 "android/library_loader_hooks.cc", |
16 "android/library_loader_hooks.h", | 16 "android/library_loader_hooks.h", |
17 "content_main.cc", | 17 "content_main.cc", |
18 "content_main_runner.cc", | 18 "content_main_runner.cc", |
19 "mac/mac_init.mm", | 19 "mac/mac_init.mm", |
20 "mac/mac_init.h", | 20 "mac/mac_init.h", |
21 "mojo/mojo_init.cc", | 21 "mojo/mojo_init.cc", |
22 "mojo/mojo_init.h", | 22 "mojo/mojo_init.h", |
23 ] | 23 ] |
24 | 24 |
25 content_app_deps = [ | 25 content_app_deps = [ |
26 "//base", | 26 "//base", |
27 "//base:i18n", | 27 "//base:i18n", |
28 | |
29 # This is needed by app/content_main_runner.cc | |
30 # TODO(brettw) this shouldn't be here, only final executables should be | |
31 # picking the allocator. http://crbug.com/571731 | |
32 "//base/allocator", | |
33 "//content:export", | 28 "//content:export", |
34 "//content:sandbox_helper_win", | 29 "//content:sandbox_helper_win", |
35 "//content/public/common:common_sources", | 30 "//content/public/common:common_sources", |
36 "//content/public/common:mojo_bindings", | 31 "//content/public/common:mojo_bindings", |
37 "//crypto", | 32 "//crypto", |
38 "//ui/base", | 33 "//ui/base", |
39 "//ui/gfx", | 34 "//ui/gfx", |
40 "//ui/gfx/geometry", | 35 "//ui/gfx/geometry", |
41 ] | 36 ] |
42 | 37 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 source_set("child") { | 101 source_set("child") { |
107 visibility = [ "//content/public/app:child" ] | 102 visibility = [ "//content/public/app:child" ] |
108 | 103 |
109 sources = content_app_sources | 104 sources = content_app_sources |
110 configs += content_app_extra_configs | 105 configs += content_app_extra_configs |
111 deps = content_app_deps | 106 deps = content_app_deps |
112 | 107 |
113 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] | 108 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
114 } | 109 } |
115 } | 110 } |
OLD | NEW |