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 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 | 7 |
8 content_app_sources = [ | 8 content_app_sources = [ |
9 "android/app_jni_registrar.cc", | 9 "android/app_jni_registrar.cc", |
10 "android/app_jni_registrar.h", | 10 "android/app_jni_registrar.h", |
(...skipping 12 matching lines...) Expand all Loading... |
23 "mojo/mojo_init.cc", | 23 "mojo/mojo_init.cc", |
24 "mojo/mojo_init.h", | 24 "mojo/mojo_init.h", |
25 ] | 25 ] |
26 | 26 |
27 content_app_deps = [ | 27 content_app_deps = [ |
28 "//base", | 28 "//base", |
29 "//base:i18n", | 29 "//base:i18n", |
30 "//content:export", | 30 "//content:export", |
31 "//content:sandbox_helper_win", | 31 "//content:sandbox_helper_win", |
32 "//content/public/common:common_sources", | 32 "//content/public/common:common_sources", |
33 "//content/public/common:mojo_bindings", | |
34 "//crypto", | 33 "//crypto", |
35 "//services/shell/public/interfaces", | 34 "//services/shell/public/interfaces", |
36 "//mojo/edk/system", | 35 "//mojo/edk/system", |
| 36 "//third_party/WebKit/public:mojo_bindings", |
37 "//ui/base", | 37 "//ui/base", |
38 "//ui/gfx", | 38 "//ui/gfx", |
39 "//ui/gfx/geometry", | 39 "//ui/gfx/geometry", |
40 ] | 40 ] |
41 | 41 |
42 if (is_win) { | 42 if (is_win) { |
43 content_app_deps += [ "//sandbox" ] | 43 content_app_deps += [ "//sandbox" ] |
44 } else if (is_android) { | 44 } else if (is_android) { |
45 content_app_sources -= [ "content_main.cc" ] | 45 content_app_sources -= [ "content_main.cc" ] |
46 content_app_deps += [ | 46 content_app_deps += [ |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 source_set("child") { | 109 source_set("child") { |
110 visibility = [ "//content/public/app:child" ] | 110 visibility = [ "//content/public/app:child" ] |
111 | 111 |
112 sources = content_app_sources | 112 sources = content_app_sources |
113 configs += content_app_extra_configs | 113 configs += content_app_extra_configs |
114 deps = content_app_deps | 114 deps = content_app_deps |
115 | 115 |
116 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] | 116 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
117 } | 117 } |
118 } | 118 } |
OLD | NEW |