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 "mojo/mojo_init.cc", | 19 "mojo/mojo_init.cc", |
20 "mojo/mojo_init.h", | 20 "mojo/mojo_init.h", |
21 "startup_helper_win.cc", | |
22 ] | 21 ] |
23 | 22 |
24 content_app_deps = [ | 23 content_app_deps = [ |
25 "//base", | 24 "//base", |
26 "//base:i18n", | 25 "//base:i18n", |
27 | 26 |
28 # This is needed by app/content_main_runner.cc | 27 # This is needed by app/content_main_runner.cc |
29 # TODO(brettw) this shouldn't be here, only final executables should be | 28 # TODO(brettw) this shouldn't be here, only final executables should be |
30 # picking the allocator. | 29 # picking the allocator. |
31 "//base/allocator", | 30 "//base/allocator", |
32 "//content:export", | 31 "//content:export", |
| 32 "//content:startup_helper_win", |
33 "//content/public/common:common_sources", | 33 "//content/public/common:common_sources", |
34 "//content/public/common:mojo_bindings", | 34 "//content/public/common:mojo_bindings", |
35 "//crypto", | 35 "//crypto", |
36 "//ui/base", | 36 "//ui/base", |
37 "//ui/gfx", | 37 "//ui/gfx", |
38 "//ui/gfx/geometry", | 38 "//ui/gfx/geometry", |
39 ] | 39 ] |
40 | 40 |
41 if (is_win) { | 41 if (is_win) { |
42 content_app_deps += [ "//sandbox" ] | 42 content_app_deps += [ "//sandbox" ] |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 source_set("child") { | 102 source_set("child") { |
103 visibility = [ "//content/public/app:child" ] | 103 visibility = [ "//content/public/app:child" ] |
104 | 104 |
105 sources = content_app_sources | 105 sources = content_app_sources |
106 configs += content_app_extra_configs | 106 configs += content_app_extra_configs |
107 deps = content_app_deps | 107 deps = content_app_deps |
108 | 108 |
109 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] | 109 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
110 } | 110 } |
111 } | 111 } |
OLD | NEW |