| 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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 "warning_service.h", | 547 "warning_service.h", |
| 548 "warning_service_factory.cc", | 548 "warning_service_factory.cc", |
| 549 "warning_service_factory.h", | 549 "warning_service_factory.h", |
| 550 "warning_set.cc", | 550 "warning_set.cc", |
| 551 "warning_set.h", | 551 "warning_set.h", |
| 552 ] | 552 ] |
| 553 | 553 |
| 554 deps += [ | 554 deps += [ |
| 555 "//components/onc", | 555 "//components/onc", |
| 556 "//components/storage_monitor", | 556 "//components/storage_monitor", |
| 557 "//components/update_client", |
| 557 "//crypto:platform", | 558 "//crypto:platform", |
| 558 "//device/bluetooth", | 559 "//device/bluetooth", |
| 559 "//device/core", | 560 "//device/core", |
| 560 "//device/hid", | 561 "//device/hid", |
| 561 "//device/serial", | 562 "//device/serial", |
| 562 "//device/usb", | 563 "//device/usb", |
| 563 "//extensions/common/api/cast_channel:cast_channel_proto", | 564 "//extensions/common/api/cast_channel:cast_channel_proto", |
| 564 ] | 565 ] |
| 565 | 566 |
| 566 if (is_chromeos) { | 567 if (is_chromeos) { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 "api/networking_private/networking_private_service_client.cc", | 612 "api/networking_private/networking_private_service_client.cc", |
| 612 "api/networking_private/networking_private_service_client.h", | 613 "api/networking_private/networking_private_service_client.h", |
| 613 ] | 614 ] |
| 614 } | 615 } |
| 615 } | 616 } |
| 616 | 617 |
| 617 if (is_win) { | 618 if (is_win) { |
| 618 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 619 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
| 619 } | 620 } |
| 620 } | 621 } |
| OLD | NEW |