Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: content/app/BUILD.gn

Issue 2885203004: Refactor content/renderer/device_sensors to use device/generic_sensor instead of device/sensors (Closed)
Patch Set: updated content/renderer/BUILD.gn Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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", 54 "//device/generic_sensor",
55 "//device/geolocation", 55 "//device/geolocation",
56 "//device/power_save_blocker", 56 "//device/power_save_blocker",
57 "//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",
65 "//third_party/android_tools:cpu_features", 64 "//third_party/android_tools:cpu_features",
66 "//ui/android", 65 "//ui/android",
67 "//ui/events", 66 "//ui/events",
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698