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

Side by Side Diff: media/capture/BUILD.gn

Issue 2703393007: Show meaningful name for cameras (Closed)
Patch Set: 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/features.gni") 5 import("//build/config/features.gni")
6 import("//media/media_options.gni") 6 import("//media/media_options.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 group("capture") { 9 group("capture") {
10 public_deps = [ 10 public_deps = [
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 "video_capturer_source.h", 113 "video_capturer_source.h",
114 ] 114 ]
115 115
116 public_deps = [ 116 public_deps = [
117 ":capture_base", 117 ":capture_base",
118 ] 118 ]
119 119
120 deps = [ 120 deps = [
121 "//base", 121 "//base",
122 "//base:i18n", 122 "//base:i18n",
123 "//extensions/strings",
123 "//media", 124 "//media",
124 "//media/capture/mojo:capture_types", 125 "//media/capture/mojo:capture_types",
125 "//media/capture/mojo:image_capture", 126 "//media/capture/mojo:image_capture",
126 "//media/mojo/interfaces:interfaces", 127 "//media/mojo/interfaces:interfaces",
127 "//services/service_manager/public/cpp", 128 "//services/service_manager/public/cpp",
128 "//third_party/libyuv", 129 "//third_party/libyuv",
130 "//ui/base",
129 "//ui/display", 131 "//ui/display",
130 "//ui/gfx", 132 "//ui/gfx",
131 ] 133 ]
132 134
133 if (is_android) { 135 if (is_android) {
134 public_deps += [ 136 public_deps += [
135 "content/android", 137 "content/android",
136 "video/android", 138 "video/android",
137 ] 139 ]
138 deps += [ 140 deps += [
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 "//media/capture/video/android", 212 "//media/capture/video/android",
211 "//media/capture/video/android:capture_java", 213 "//media/capture/video/android:capture_java",
212 ] 214 ]
213 } 215 }
214 216
215 if (is_win) { 217 if (is_win) {
216 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. 218 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations.
217 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 219 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
218 } 220 }
219 } 221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698