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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 # Android doesn't use the browser/child split and in the component build | 44 # Android doesn't use the browser/child split and in the component build |
45 # all symbols are exported from the .so, so the Android-specific files | 45 # all symbols are exported from the .so, so the Android-specific files |
46 # can include headers from both places. Many of these are required for | 46 # can include headers from both places. Many of these are required for |
47 # JNI registration. | 47 # JNI registration. |
48 content_app_deps += [ | 48 content_app_deps += [ |
49 "//content/browser", | 49 "//content/browser", |
50 "//content/child", | 50 "//content/child", |
51 "//content/public/android:jni", | 51 "//content/public/android:jni", |
52 "//device/bluetooth", | 52 "//device/bluetooth", |
53 "//device/gamepad", | 53 "//device/gamepad", |
54 "//device/generic_sensor", | |
55 "//device/geolocation", | 54 "//device/geolocation", |
56 "//device/power_save_blocker", | 55 "//device/power_save_blocker", |
57 "//device/sensors", | 56 "//device/sensors", |
58 "//device/usb", | 57 "//device/usb", |
59 "//gpu", | 58 "//gpu", |
60 "//media", | 59 "//media", |
61 "//media/capture", | 60 "//media/capture", |
62 "//media/midi", | 61 "//media/midi", |
63 "//net", | 62 "//net", |
64 "//skia", | 63 "//skia", |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 } | 191 } |
193 | 192 |
194 implement_content_app("child") { | 193 implement_content_app("child") { |
195 visibility = [ "//content/public/app:child" ] | 194 visibility = [ "//content/public/app:child" ] |
196 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] | 195 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
197 deps = [ | 196 deps = [ |
198 ":content_app_child_deps", | 197 ":content_app_child_deps", |
199 ] | 198 ] |
200 } | 199 } |
201 } | 200 } |
OLD | NEW |