| 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/ui.gni") | 6 import("//build/config/ui.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 11 matching lines...) Expand all Loading... |
| 22 "mojo/mojo_init.cc", | 22 "mojo/mojo_init.cc", |
| 23 "mojo/mojo_init.h", | 23 "mojo/mojo_init.h", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 content_app_deps = [ | 26 content_app_deps = [ |
| 27 "//base", | 27 "//base", |
| 28 "//base:i18n", | 28 "//base:i18n", |
| 29 | 29 |
| 30 # This is needed by app/content_main_runner.cc | 30 # This is needed by app/content_main_runner.cc |
| 31 # TODO(brettw) this shouldn't be here, only final executables should be | 31 # TODO(brettw) this shouldn't be here, only final executables should be |
| 32 # picking the allocator. | 32 # picking the allocator. http://crbug.com/571731 |
| 33 "//base/allocator", | 33 "//base/allocator", |
| 34 "//content:export", | 34 "//content:export", |
| 35 "//content:sandbox_helper_win", | 35 "//content:sandbox_helper_win", |
| 36 "//content/public/common:common_sources", | 36 "//content/public/common:common_sources", |
| 37 "//content/public/common:mojo_bindings", | 37 "//content/public/common:mojo_bindings", |
| 38 "//crypto", | 38 "//crypto", |
| 39 "//ui/base", | 39 "//ui/base", |
| 40 "//ui/gfx", | 40 "//ui/gfx", |
| 41 "//ui/gfx/geometry", | 41 "//ui/gfx/geometry", |
| 42 ] | 42 ] |
| (...skipping 66 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 |