| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 } | 47 } |
| 48 | 48 |
| 49 if (is_ios) { | 49 if (is_ios) { |
| 50 content_app_sources -= [ | 50 content_app_sources -= [ |
| 51 "content_main.cc", | 51 "content_main.cc", |
| 52 "mojo/mojo_init.cc", | 52 "mojo/mojo_init.cc", |
| 53 "mojo/mojo_init.h", | 53 "mojo/mojo_init.h", |
| 54 ] | 54 ] |
| 55 } else { | 55 } else { |
| 56 content_app_deps += [ | 56 content_app_deps += [ |
| 57 "//mojo/application_manager", | |
| 58 "//mojo/edk/system", | 57 "//mojo/edk/system", |
| 59 "//mojo/environment:chromium", | 58 "//mojo/environment:chromium", |
| 60 "//mojo/public/interfaces/application", | 59 "//mojo/public/interfaces/application", |
| 61 ] | 60 ] |
| 62 } | 61 } |
| 63 | 62 |
| 64 content_app_extra_configs = [ | 63 content_app_extra_configs = [ |
| 65 "//build/config/compiler:wexit_time_destructors", | 64 "//build/config/compiler:wexit_time_destructors", |
| 66 "//content:content_implementation", | 65 "//content:content_implementation", |
| 67 ] | 66 ] |
| (...skipping 30 matching lines...) Expand all Loading... |
| 98 source_set("child") { | 97 source_set("child") { |
| 99 visibility = [ "//content/public/app:child" ] | 98 visibility = [ "//content/public/app:child" ] |
| 100 | 99 |
| 101 sources = content_app_sources | 100 sources = content_app_sources |
| 102 configs += content_app_extra_configs | 101 configs += content_app_extra_configs |
| 103 deps = content_app_deps | 102 deps = content_app_deps |
| 104 | 103 |
| 105 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ] | 104 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ] |
| 106 } | 105 } |
| 107 } | 106 } |
| OLD | NEW |