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

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

Issue 880393004: Fix chromeos gn build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | no next file » | 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/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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 "view_type_utils.h", 538 "view_type_utils.h",
539 "warning_service.cc", 539 "warning_service.cc",
540 "warning_service.h", 540 "warning_service.h",
541 "warning_service_factory.cc", 541 "warning_service_factory.cc",
542 "warning_service_factory.h", 542 "warning_service_factory.h",
543 "warning_set.cc", 543 "warning_set.cc",
544 "warning_set.h", 544 "warning_set.h",
545 ] 545 ]
546 546
547 deps += [ 547 deps += [
548 "//components/onc",
548 "//components/storage_monitor", 549 "//components/storage_monitor",
549 "//crypto:platform", 550 "//crypto:platform",
550 "//device/bluetooth", 551 "//device/bluetooth",
551 "//device/core", 552 "//device/core",
552 "//device/hid", 553 "//device/hid",
553 "//device/serial", 554 "//device/serial",
554 "//device/usb", 555 "//device/usb",
555 "//extensions/common/api/cast_channel:cast_channel_proto", 556 "//extensions/common/api/cast_channel:cast_channel_proto",
556 ] 557 ]
557 558
(...skipping 14 matching lines...) Expand all
572 "api/vpn_provider/vpn_provider_api.cc", 573 "api/vpn_provider/vpn_provider_api.cc",
573 "api/vpn_provider/vpn_provider_api.h", 574 "api/vpn_provider/vpn_provider_api.h",
574 "api/vpn_provider/vpn_service.cc", 575 "api/vpn_provider/vpn_service.cc",
575 "api/vpn_provider/vpn_service.h", 576 "api/vpn_provider/vpn_service.h",
576 "api/vpn_provider/vpn_service_factory.h", 577 "api/vpn_provider/vpn_service_factory.h",
577 ] 578 ]
578 } 579 }
579 580
580 if (is_desktop_linux) { 581 if (is_desktop_linux) {
581 configs += [ "//build/config/linux:dbus" ] 582 configs += [ "//build/config/linux:dbus" ]
582 deps += [ 583 deps += [ "//dbus" ]
583 "//dbus",
584 "//components/onc",
585 ]
586 sources += [ 584 sources += [
587 "api/networking_private/networking_private_event_router_nonchromeos.cc", 585 "api/networking_private/networking_private_event_router_nonchromeos.cc",
588 "api/networking_private/networking_private_linux.cc", 586 "api/networking_private/networking_private_linux.cc",
589 "api/networking_private/networking_private_linux.h", 587 "api/networking_private/networking_private_linux.h",
590 "api/networking_private/network_config_dbus_constants_linux.cc", 588 "api/networking_private/network_config_dbus_constants_linux.cc",
591 "api/networking_private/network_config_dbus_constants_linux.h", 589 "api/networking_private/network_config_dbus_constants_linux.h",
592 ] 590 ]
593 } else if (is_win || is_mac) { 591 } else if (is_win || is_mac) {
594 deps += [ "//components/wifi_component" ] 592 deps += [ "//components/wifi_component" ]
595 sources += [ 593 sources += [
596 "api/networking_private/networking_private_event_router_nonchromeos.cc", 594 "api/networking_private/networking_private_event_router_nonchromeos.cc",
597 "api/networking_private/networking_private_service_client.cc", 595 "api/networking_private/networking_private_service_client.cc",
598 "api/networking_private/networking_private_service_client.h", 596 "api/networking_private/networking_private_service_client.h",
599 ] 597 ]
600 } 598 }
601 } 599 }
602 600
603 if (is_win) { 601 if (is_win) {
604 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t runcations. 602 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t runcations.
605 } 603 }
606 } 604 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698