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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 55 "//device/sensors", |
56 "//device/usb", | 56 "//device/usb", |
57 "//device/vibration", | |
58 "//gpu", | 57 "//gpu", |
59 "//media", | 58 "//media", |
60 "//media/capture", | 59 "//media/capture", |
61 "//media/midi", | 60 "//media/midi", |
62 "//net", | 61 "//net", |
63 "//skia", | 62 "//skia", |
64 "//third_party/android_tools:cpu_features", | 63 "//third_party/android_tools:cpu_features", |
65 "//ui/android", | 64 "//ui/android", |
66 "//ui/events", | 65 "//ui/events", |
67 "//ui/shell_dialogs", | 66 "//ui/shell_dialogs", |
(...skipping 122 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 |