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

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

Issue 2214533002: move //media/capture to //device/capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « content/DEPS ('k') | content/app/android/library_loader_hooks.cc » ('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 rescontent/browser/BUILD.gnerv ed.
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 7
8 # Implements "content_main" given the defines and visibility. On Windows this 8 # Implements "content_main" given the defines and visibility. On Windows this
9 # is compiled with a different define for browser and child, but all code needs 9 # is compiled with a different define for browser and child, but all code needs
10 # to be shared. 10 # to be shared.
11 template("implement_content_app") { 11 template("implement_content_app") {
(...skipping 30 matching lines...) Expand all
42 # all symbols are exported from the .so, so the Android-specific files 42 # all symbols are exported from the .so, so the Android-specific files
43 # can include headers from both places. Many of these are required for 43 # can include headers from both places. Many of these are required for
44 # JNI registration. 44 # JNI registration.
45 content_app_deps += [ 45 content_app_deps += [
46 "//content/browser", 46 "//content/browser",
47 "//content/child", 47 "//content/child",
48 "//content/public/android:jni", 48 "//content/public/android:jni",
49 "//content/browser", 49 "//content/browser",
50 "//content/child", 50 "//content/child",
51 "//device/bluetooth", 51 "//device/bluetooth",
52 "//device/capture",
52 "//device/gamepad", 53 "//device/gamepad",
53 "//device/geolocation:device_geolocation", 54 "//device/geolocation:device_geolocation",
54 "//device/power_save_blocker", 55 "//device/power_save_blocker",
55 "//device/usb", 56 "//device/usb",
56 "//device/vibration", 57 "//device/vibration",
57 "//gpu", 58 "//gpu",
58 "//media", 59 "//media",
59 "//media/capture",
60 "//media/midi", 60 "//media/midi",
61 "//net", 61 "//net",
62 "//skia", 62 "//skia",
63 "//third_party/android_tools:cpu_features", 63 "//third_party/android_tools:cpu_features",
64 "//ui/android", 64 "//ui/android",
65 "//ui/events", 65 "//ui/events",
66 "//ui/shell_dialogs", 66 "//ui/shell_dialogs",
67 ] 67 ]
68 } 68 }
69 69
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 implement_content_app("browser") { 159 implement_content_app("browser") {
160 visibility = [ "//content/public/app:browser" ] 160 visibility = [ "//content/public/app:browser" ]
161 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ] 161 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ]
162 } 162 }
163 163
164 implement_content_app("child") { 164 implement_content_app("child") {
165 visibility = [ "//content/public/app:child" ] 165 visibility = [ "//content/public/app:child" ]
166 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] 166 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ]
167 } 167 }
168 } 168 }
OLDNEW
« no previous file with comments | « content/DEPS ('k') | content/app/android/library_loader_hooks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698