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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 if (is_chromeos) { | 573 if (is_chromeos) { |
574 sources += [ "api/audio/audio_service_chromeos.cc" ] | 574 sources += [ "api/audio/audio_service_chromeos.cc" ] |
575 } else if (is_linux) { | 575 } else if (is_linux) { |
576 sources += [ "api/audio/audio_service_linux.cc" ] | 576 sources += [ "api/audio/audio_service_linux.cc" ] |
577 } else { | 577 } else { |
578 sources += [ "api/audio/audio_service.cc" ] | 578 sources += [ "api/audio/audio_service.cc" ] |
579 } | 579 } |
580 | 580 |
581 if (is_chromeos) { | 581 if (is_chromeos) { |
582 sources += [ | 582 sources += [ |
| 583 "api/networking_config/networking_config_api.cc", |
| 584 "api/networking_config/networking_config_api.h", |
| 585 "api/networking_config/networking_config_service.cc", |
| 586 "api/networking_config/networking_config_service.h", |
| 587 "api/networking_config/networking_config_service_factory.cc", |
| 588 "api/networking_config/networking_config_service_factory.h", |
583 "api/vpn_provider/vpn_provider_api.cc", | 589 "api/vpn_provider/vpn_provider_api.cc", |
584 "api/vpn_provider/vpn_provider_api.h", | 590 "api/vpn_provider/vpn_provider_api.h", |
585 "api/vpn_provider/vpn_service.cc", | 591 "api/vpn_provider/vpn_service.cc", |
586 "api/vpn_provider/vpn_service.h", | 592 "api/vpn_provider/vpn_service.h", |
587 "api/vpn_provider/vpn_service_factory.h", | 593 "api/vpn_provider/vpn_service_factory.h", |
588 ] | 594 ] |
589 } | 595 } |
590 | 596 |
591 if (is_desktop_linux) { | 597 if (is_desktop_linux) { |
592 configs += [ "//build/config/linux:dbus" ] | 598 configs += [ "//build/config/linux:dbus" ] |
(...skipping 12 matching lines...) Expand all Loading... |
605 "api/networking_private/networking_private_service_client.cc", | 611 "api/networking_private/networking_private_service_client.cc", |
606 "api/networking_private/networking_private_service_client.h", | 612 "api/networking_private/networking_private_service_client.h", |
607 ] | 613 ] |
608 } | 614 } |
609 } | 615 } |
610 | 616 |
611 if (is_win) { | 617 if (is_win) { |
612 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 618 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
613 } | 619 } |
614 } | 620 } |
OLD | NEW |