| 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 content_app_sources = [ | 5 content_app_sources = [ |
| 6 "android/app_jni_registrar.cc", | 6 "android/app_jni_registrar.cc", |
| 7 "android/app_jni_registrar.h", | 7 "android/app_jni_registrar.h", |
| 8 "android/child_process_service.cc", | 8 "android/child_process_service.cc", |
| 9 "android/child_process_service.h", | 9 "android/child_process_service.h", |
| 10 "android/content_main.cc", | 10 "android/content_main.cc", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 if (is_ios) { | 46 if (is_ios) { |
| 47 content_app_sources -= [ | 47 content_app_sources -= [ |
| 48 "content_main.cc", | 48 "content_main.cc", |
| 49 "mojo/mojo_init.cc", | 49 "mojo/mojo_init.cc", |
| 50 "mojo/mojo_init.h", | 50 "mojo/mojo_init.h", |
| 51 ] | 51 ] |
| 52 } else { | 52 } else { |
| 53 content_app_deps += [ | 53 content_app_deps += [ |
| 54 "//mojo/environment:chromium", | 54 "//mojo/environment:chromium", |
| 55 "//mojo/public/interfaces/service_provider", | 55 "//mojo/public/interfaces/application", |
| 56 "//mojo/service_manager", | 56 "//mojo/service_manager", |
| 57 "//mojo/system", | 57 "//mojo/system", |
| 58 ] | 58 ] |
| 59 } | 59 } |
| 60 | 60 |
| 61 content_app_extra_configs = [ | 61 content_app_extra_configs = [ |
| 62 "//build/config/compiler:wexit_time_destructors", | 62 "//build/config/compiler:wexit_time_destructors", |
| 63 "//content:content_implementation", | 63 "//content:content_implementation", |
| 64 ] | 64 ] |
| 65 | 65 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 } | 108 } |
| 109 } | 109 } |
| 110 | 110 |
| 111 # Includes both browser and child process app sources. | 111 # Includes both browser and child process app sources. |
| 112 source_set("both") { | 112 source_set("both") { |
| 113 sources = content_app_sources | 113 sources = content_app_sources |
| 114 configs += content_app_extra_configs | 114 configs += content_app_extra_configs |
| 115 deps = content_app_deps | 115 deps = content_app_deps |
| 116 } | 116 } |
| 117 } | 117 } |
| OLD | NEW |