OLD | NEW |
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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 "//components/storage_monitor", | 506 "//components/storage_monitor", |
507 "//crypto:platform", | 507 "//crypto:platform", |
508 "//device/bluetooth", | 508 "//device/bluetooth", |
509 "//device/core", | 509 "//device/core", |
510 "//device/hid", | 510 "//device/hid", |
511 "//device/serial", | 511 "//device/serial", |
512 "//device/usb", | 512 "//device/usb", |
513 "//extensions/common/api/cast_channel:cast_channel_proto", | 513 "//extensions/common/api/cast_channel:cast_channel_proto", |
514 ] | 514 ] |
515 | 515 |
516 if (use_openssl) { | |
517 sources += [ "api/cast_channel/cast_auth_util_openssl.cc" ] | |
518 } else { | |
519 sources += [ "api/cast_channel/cast_auth_util_nss.cc" ] | |
520 } | |
521 | |
522 if (is_chromeos) { | 516 if (is_chromeos) { |
523 sources += [ | 517 sources += [ |
524 "api/vpn_provider/vpn_provider_api.cc", | 518 "api/vpn_provider/vpn_provider_api.cc", |
525 "api/vpn_provider/vpn_provider_api.h", | 519 "api/vpn_provider/vpn_provider_api.h", |
526 "api/vpn_provider/vpn_service.cc", | 520 "api/vpn_provider/vpn_service.cc", |
527 "api/vpn_provider/vpn_service.h", | 521 "api/vpn_provider/vpn_service.h", |
528 "api/vpn_provider/vpn_service_factory.h", | 522 "api/vpn_provider/vpn_service_factory.h", |
529 ] | 523 ] |
530 } | 524 } |
531 } | 525 } |
532 | 526 |
533 if (is_win) { | 527 if (is_win) { |
534 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 528 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
535 } | 529 } |
536 } | 530 } |
OLD | NEW |