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

Side by Side Diff: extensions/browser/BUILD.gn

Issue 497363004: Merge components/usb_service into device/usb. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hide //device/usb on mobile platforms. Created 6 years, 3 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 7
8 # GYP version: extensions/extensions.gyp:extensions_browser 8 # GYP version: extensions/extensions.gyp:extensions_browser
9 source_set("browser") { 9 source_set("browser") {
10 sources = [ 10 sources = [
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 "value_store/value_store_frontend.h", 295 "value_store/value_store_frontend.h",
296 "value_store/value_store_util.cc", 296 "value_store/value_store_util.cc",
297 "value_store/value_store_util.h", 297 "value_store/value_store_util.h",
298 "verified_contents.cc", 298 "verified_contents.cc",
299 "verified_contents.h", 299 "verified_contents.h",
300 "view_type_utils.cc", 300 "view_type_utils.cc",
301 "view_type_utils.h", 301 "view_type_utils.h",
302 ] 302 ]
303 303
304 deps += [ 304 deps += [
305 "//components/usb_service",
306 "//crypto:platform", 305 "//crypto:platform",
307 "//device/hid", 306 "//device/hid",
308 "//device/serial", 307 "//device/serial",
308 "//device/usb",
309 "//extensions/browser/api/cast_channel:cast_channel_proto", 309 "//extensions/browser/api/cast_channel:cast_channel_proto",
310 ] 310 ]
311 311
312 if (use_openssl) { 312 if (use_openssl) {
313 sources += [ 313 sources += [
314 "api/cast_channel/cast_auth_util_openssl.cc", 314 "api/cast_channel/cast_auth_util_openssl.cc",
315 ] 315 ]
316 } else { 316 } else {
317 sources += [ 317 sources += [
318 "api/cast_channel/cast_auth_util_nss.cc", 318 "api/cast_channel/cast_auth_util_nss.cc",
319 ] 319 ]
320 } 320 }
321 } 321 }
322 322
323 if (is_win) { 323 if (is_win) {
324 cflags = [ 324 cflags = [
325 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 325 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
326 ] 326 ]
327 } 327 }
328 } 328 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698