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 | 12 |
13 deps = [ | 13 deps = [ |
14 "//components/copresence_sockets", | 14 "//components/copresence_sockets", |
15 "//components/keyed_service/content", | 15 "//components/keyed_service/content", |
16 "//components/keyed_service/core", | 16 "//components/keyed_service/core", |
17 "//components/pref_registry", | 17 "//components/pref_registry", |
18 "//components/sessions", | 18 "//components/sessions", |
19 "//components/web_cache/browser", | 19 "//components/web_cache/browser", |
20 "//components/web_modal", | 20 "//components/web_modal", |
21 "//content/public/browser", | 21 "//content/public/browser", |
22 "//extensions/common", | 22 "//extensions/common", |
23 "//extensions/common/api", | 23 "//extensions/common/api", |
24 "//extensions/common/api:api_registration", | 24 "//extensions/common/api:api_registration", |
25 "//extensions/strings", | 25 "//extensions/strings", |
| 26 "//google_apis", |
26 "//skia", | 27 "//skia", |
27 "//third_party/leveldatabase", | 28 "//third_party/leveldatabase", |
28 "//third_party/re2" | 29 "//third_party/re2" |
29 ] | 30 ] |
30 | 31 |
31 if (enable_extensions) { | 32 if (enable_extensions) { |
32 # Includes all API implementations and the ExtensionsApiClient | 33 # Includes all API implementations and the ExtensionsApiClient |
33 # interface. Moving an API from src/chrome to src/extensions implies | 34 # interface. Moving an API from src/chrome to src/extensions implies |
34 # it can be cleanly disabled with enable_extensions=false. | 35 # it can be cleanly disabled with enable_extensions=false. |
35 # TODO: Eventually the entire extensions module should not be built | 36 # TODO: Eventually the entire extensions module should not be built |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 "script_executor.h", | 421 "script_executor.h", |
421 "stash_backend.cc", | 422 "stash_backend.cc", |
422 "stash_backend.h", | 423 "stash_backend.h", |
423 "state_store.cc", | 424 "state_store.cc", |
424 "state_store.h", | 425 "state_store.h", |
425 "suggest_permission_util.cc", | 426 "suggest_permission_util.cc", |
426 "suggest_permission_util.h", | 427 "suggest_permission_util.h", |
427 "uninstall_reason.h", | 428 "uninstall_reason.h", |
428 "update_observer.h", | 429 "update_observer.h", |
429 "updater/extension_cache.h", | 430 "updater/extension_cache.h", |
| 431 "updater/extension_downloader.cc", |
| 432 "updater/extension_downloader.h", |
| 433 "updater/extension_downloader_delegate.cc", |
| 434 "updater/extension_downloader_delegate.h", |
430 "updater/manifest_fetch_data.cc", | 435 "updater/manifest_fetch_data.cc", |
431 "updater/manifest_fetch_data.h", | 436 "updater/manifest_fetch_data.h", |
432 "updater/null_extension_cache.cc", | 437 "updater/null_extension_cache.cc", |
433 "updater/null_extension_cache.h", | 438 "updater/null_extension_cache.h", |
434 "updater/request_queue.h", | 439 "updater/request_queue.h", |
435 "updater/request_queue_impl.h", | 440 "updater/request_queue_impl.h", |
436 "updater/safe_manifest_parser.cc", | 441 "updater/safe_manifest_parser.cc", |
437 "updater/safe_manifest_parser.h", | 442 "updater/safe_manifest_parser.h", |
438 "url_request_util.cc", | 443 "url_request_util.cc", |
439 "url_request_util.h", | 444 "url_request_util.h", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 ] | 485 ] |
481 } | 486 } |
482 } | 487 } |
483 | 488 |
484 if (is_win) { | 489 if (is_win) { |
485 cflags = [ | 490 cflags = [ |
486 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 491 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
487 ] | 492 ] |
488 } | 493 } |
489 } | 494 } |
OLD | NEW |