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", |
(...skipping 13 matching lines...) Expand all Loading... |
24 ] | 24 ] |
25 | 25 |
26 content_app_deps = [ | 26 content_app_deps = [ |
27 "//base", | 27 "//base", |
28 "//base:i18n", | 28 "//base:i18n", |
29 "//content:export", | 29 "//content:export", |
30 "//content:sandbox_helper_win", | 30 "//content:sandbox_helper_win", |
31 "//content/public/common:common_sources", | 31 "//content/public/common:common_sources", |
32 "//content/public/common:mojo_bindings", | 32 "//content/public/common:mojo_bindings", |
33 "//crypto", | 33 "//crypto", |
34 "//mojo/shell/public/interfaces", | 34 "//services/shell/public/interfaces", |
35 "//mojo/edk/system", | 35 "//mojo/edk/system", |
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" ] |
43 } else if (is_android) { | 43 } else if (is_android) { |
44 content_app_sources -= [ "content_main.cc" ] | 44 content_app_sources -= [ "content_main.cc" ] |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 source_set("child") { | 104 source_set("child") { |
105 visibility = [ "//content/public/app:child" ] | 105 visibility = [ "//content/public/app:child" ] |
106 | 106 |
107 sources = content_app_sources | 107 sources = content_app_sources |
108 configs += content_app_extra_configs | 108 configs += content_app_extra_configs |
109 deps = content_app_deps | 109 deps = content_app_deps |
110 | 110 |
111 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] | 111 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
112 } | 112 } |
113 } | 113 } |
OLD | NEW |