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

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

Issue 2646093002: Move //content/browser/device_sensor/ into device/sensors (Closed)
Patch Set: gn format & code rebase Created 3 years, 10 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
« no previous file with comments | « no previous file | content/app/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "//content/browser", 47 "//content/browser",
48 "//content/child", 48 "//content/child",
49 "//content/public/android:jni", 49 "//content/public/android:jni",
50 "//content/browser", 50 "//content/browser",
51 "//content/child", 51 "//content/child",
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",
57 "//device/time_zone_monitor", 58 "//device/time_zone_monitor",
58 "//device/usb", 59 "//device/usb",
59 "//device/vibration", 60 "//device/vibration",
60 "//gpu", 61 "//gpu",
61 "//media", 62 "//media",
62 "//media/capture", 63 "//media/capture",
63 "//media/midi", 64 "//media/midi",
64 "//net", 65 "//net",
65 "//skia", 66 "//skia",
66 "//third_party/android_tools:cpu_features", 67 "//third_party/android_tools:cpu_features",
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 implement_content_app("browser") { 162 implement_content_app("browser") {
162 visibility = [ "//content/public/app:browser" ] 163 visibility = [ "//content/public/app:browser" ]
163 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ] 164 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ]
164 } 165 }
165 166
166 implement_content_app("child") { 167 implement_content_app("child") {
167 visibility = [ "//content/public/app:child" ] 168 visibility = [ "//content/public/app:child" ]
168 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] 169 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ]
169 } 170 }
170 } 171 }
OLDNEW
« no previous file with comments | « no previous file | content/app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698