| 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 25 matching lines...) Expand all Loading... |
| 36 "//ui/gfx", | 36 "//ui/gfx", |
| 37 "//ui/gfx/geometry", | 37 "//ui/gfx/geometry", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 if (is_win) { | 40 if (is_win) { |
| 41 content_app_deps += [ "//sandbox" ] | 41 content_app_deps += [ "//sandbox" ] |
| 42 } else if (is_android) { | 42 } else if (is_android) { |
| 43 content_app_sources -= [ "content_main.cc" ] | 43 content_app_sources -= [ "content_main.cc" ] |
| 44 content_app_deps += [ | 44 content_app_deps += [ |
| 45 "//content/public/android:jni", | 45 "//content/public/android:jni", |
| 46 "//device/vibration", |
| 46 "//skia", | 47 "//skia", |
| 47 "//third_party/android_tools:cpu_features", | 48 "//third_party/android_tools:cpu_features", |
| 48 "//ui/android", | 49 "//ui/android", |
| 49 ] | 50 ] |
| 50 } | 51 } |
| 51 | 52 |
| 52 if (is_ios) { | 53 if (is_ios) { |
| 53 content_app_sources -= [ | 54 content_app_sources -= [ |
| 54 "content_main.cc", | 55 "content_main.cc", |
| 55 "mojo/mojo_init.cc", | 56 "mojo/mojo_init.cc", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 source_set("child") { | 101 source_set("child") { |
| 101 visibility = [ "//content/public/app:child" ] | 102 visibility = [ "//content/public/app:child" ] |
| 102 | 103 |
| 103 sources = content_app_sources | 104 sources = content_app_sources |
| 104 configs += content_app_extra_configs | 105 configs += content_app_extra_configs |
| 105 deps = content_app_deps | 106 deps = content_app_deps |
| 106 | 107 |
| 107 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ] | 108 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ] |
| 108 } | 109 } |
| 109 } | 110 } |
| OLD | NEW |