| 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 = [] |
| 11 | 11 |
| 12 deps = [ | 12 deps = [ |
| 13 "//components/copresence_endpoints", | 13 "//components/copresence_endpoints", |
| 14 "//components/keyed_service/content", | 14 "//components/keyed_service/content", |
| 15 "//components/keyed_service/core", | 15 "//components/keyed_service/core", |
| 16 "//components/pref_registry", | 16 "//components/pref_registry", |
| 17 "//components/sessions:sessions_content", | 17 "//components/sessions:sessions_content", |
| 18 "//components/ui/zoom:ui_zoom", |
| 18 "//components/web_cache/browser", | 19 "//components/web_cache/browser", |
| 19 "//components/web_modal", | 20 "//components/web_modal", |
| 20 "//content/public/browser", | 21 "//content/public/browser", |
| 21 "//crypto:platform", | 22 "//crypto:platform", |
| 22 "//extensions/common", | 23 "//extensions/common", |
| 23 "//extensions/common/api", | 24 "//extensions/common/api", |
| 24 "//extensions/common/api:api_registration", | 25 "//extensions/common/api:api_registration", |
| 25 "//extensions/strings", | 26 "//extensions/strings", |
| 26 "//google_apis", | 27 "//google_apis", |
| 27 "//skia", | 28 "//skia", |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 "api/vpn_provider/vpn_service.h", | 528 "api/vpn_provider/vpn_service.h", |
| 528 "api/vpn_provider/vpn_service_factory.h", | 529 "api/vpn_provider/vpn_service_factory.h", |
| 529 ] | 530 ] |
| 530 } | 531 } |
| 531 } | 532 } |
| 532 | 533 |
| 533 if (is_win) { | 534 if (is_win) { |
| 534 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 535 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
| 535 } | 536 } |
| 536 } | 537 } |
| OLD | NEW |