| 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 source_set("app") { | 5 source_set("app") { |
| 6 sources = [ | 6 sources = [ |
| 7 "android/app_jni_registrar.cc", | 7 "android/app_jni_registrar.cc", |
| 8 "android/app_jni_registrar.h", | 8 "android/app_jni_registrar.h", |
| 9 "android/child_process_service.cc", | 9 "android/child_process_service.cc", |
| 10 "android/child_process_service.h", | 10 "android/child_process_service.h", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 if (is_ios) { | 48 if (is_ios) { |
| 49 sources -= [ | 49 sources -= [ |
| 50 "content_main.cc", | 50 "content_main.cc", |
| 51 "mojo/mojo_init.cc", | 51 "mojo/mojo_init.cc", |
| 52 "mojo/mojo_init.h", | 52 "mojo/mojo_init.h", |
| 53 ] | 53 ] |
| 54 } else { | 54 } else { |
| 55 deps += [ | 55 deps += [ |
| 56 "//mojo/environment:chromium", | 56 "//mojo/environment:chromium", |
| 57 "//mojo/public/interfaces/interface_provider", | 57 "//mojo/public/interfaces/service_provider", |
| 58 "//mojo/service_manager", | 58 "//mojo/service_manager", |
| 59 "//mojo/system", | 59 "//mojo/system", |
| 60 ] | 60 ] |
| 61 } | 61 } |
| 62 } | 62 } |
| OLD | NEW |