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 # TODO(GYP) enable chrome_multiple_dll support | 5 # TODO(GYP) enable chrome_multiple_dll support |
6 is_chrome_multiple_dll = false | 6 is_chrome_multiple_dll = false |
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 content_app_deps = [ | 23 content_app_deps = [ |
24 "//base", | 24 "//base", |
25 "//base:i18n", | 25 "//base:i18n", |
26 | 26 |
27 # This is needed by app/content_main_runner.cc | 27 # This is needed by app/content_main_runner.cc |
28 # 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 |
29 # picking the allocator. | 29 # picking the allocator. |
30 "//base/allocator", | 30 "//base/allocator", |
31 "//content:export", | 31 "//content:export", |
32 "//content/public/common:common_sources", | 32 "//content/public/common:common_sources", |
| 33 "//content/public/common:mojo_bindings", |
33 "//crypto", | 34 "//crypto", |
34 "//ui/base", | 35 "//ui/base", |
35 "//ui/gfx", | 36 "//ui/gfx", |
36 "//ui/gfx/geometry", | 37 "//ui/gfx/geometry", |
37 ] | 38 ] |
38 | 39 |
39 if (is_win) { | 40 if (is_win) { |
40 content_app_deps += [ "//sandbox" ] | 41 content_app_deps += [ "//sandbox" ] |
41 } else if (is_android) { | 42 } else if (is_android) { |
42 content_app_sources -= [ "content_main.cc" ] | 43 content_app_sources -= [ "content_main.cc" ] |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 source_set("child") { | 100 source_set("child") { |
100 visibility = [ "//content/public/app:child" ] | 101 visibility = [ "//content/public/app:child" ] |
101 | 102 |
102 sources = content_app_sources | 103 sources = content_app_sources |
103 configs += content_app_extra_configs | 104 configs += content_app_extra_configs |
104 deps = content_app_deps | 105 deps = content_app_deps |
105 | 106 |
106 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ] | 107 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ] |
107 } | 108 } |
108 } | 109 } |
OLD | NEW |