| 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/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//ppapi/features/features.gni") | 7 import("//ppapi/features/features.gni") |
| 8 | 8 |
| 9 # Implements "content_main" given the defines and visibility. On Windows this | 9 # Implements "content_main" given the defines and visibility. On Windows this |
| 10 # is compiled with a different define for browser and child, but all code needs | 10 # is compiled with a different define for browser and child, but all code needs |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 # JNI registration. | 45 # JNI registration. |
| 46 content_app_deps += [ | 46 content_app_deps += [ |
| 47 "//content/browser", | 47 "//content/browser", |
| 48 "//content/child", | 48 "//content/child", |
| 49 "//content/public/android:jni", | 49 "//content/public/android:jni", |
| 50 "//device/bluetooth", | 50 "//device/bluetooth", |
| 51 "//device/gamepad", | 51 "//device/gamepad", |
| 52 "//device/generic_sensor", | 52 "//device/generic_sensor", |
| 53 "//device/geolocation", | 53 "//device/geolocation", |
| 54 "//device/power_save_blocker", | 54 "//device/power_save_blocker", |
| 55 "//device/sensors", | |
| 56 "//device/usb", | 55 "//device/usb", |
| 57 "//gpu", | 56 "//gpu", |
| 58 "//media", | 57 "//media", |
| 59 "//media/capture", | 58 "//media/capture", |
| 60 "//media/midi", | 59 "//media/midi", |
| 61 "//net", | 60 "//net", |
| 62 "//skia", | 61 "//skia", |
| 63 "//third_party/android_tools:cpu_features", | 62 "//third_party/android_tools:cpu_features", |
| 64 "//ui/android", | 63 "//ui/android", |
| 65 "//ui/events", | 64 "//ui/events", |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 } | 189 } |
| 191 | 190 |
| 192 implement_content_app("child") { | 191 implement_content_app("child") { |
| 193 visibility = [ "//content/public/app:child" ] | 192 visibility = [ "//content/public/app:child" ] |
| 194 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] | 193 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
| 195 deps = [ | 194 deps = [ |
| 196 ":content_app_child_deps", | 195 ":content_app_child_deps", |
| 197 ] | 196 ] |
| 198 } | 197 } |
| 199 } | 198 } |
| OLD | NEW |