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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 "script_executor.cc", | 419 "script_executor.cc", |
420 "script_executor.h", | 420 "script_executor.h", |
421 "stash_backend.cc", | 421 "stash_backend.cc", |
422 "stash_backend.h", | 422 "stash_backend.h", |
423 "state_store.cc", | 423 "state_store.cc", |
424 "state_store.h", | 424 "state_store.h", |
425 "suggest_permission_util.cc", | 425 "suggest_permission_util.cc", |
426 "suggest_permission_util.h", | 426 "suggest_permission_util.h", |
427 "uninstall_reason.h", | 427 "uninstall_reason.h", |
428 "update_observer.h", | 428 "update_observer.h", |
| 429 "updater/extension_cache.h", |
429 "updater/manifest_fetch_data.cc", | 430 "updater/manifest_fetch_data.cc", |
430 "updater/manifest_fetch_data.h", | 431 "updater/manifest_fetch_data.h", |
| 432 "updater/null_extension_cache.cc", |
| 433 "updater/null_extension_cache.h", |
431 "updater/safe_manifest_parser.cc", | 434 "updater/safe_manifest_parser.cc", |
432 "updater/safe_manifest_parser.h", | 435 "updater/safe_manifest_parser.h", |
433 "url_request_util.cc", | 436 "url_request_util.cc", |
434 "url_request_util.h", | 437 "url_request_util.h", |
435 "value_store/leveldb_value_store.cc", | 438 "value_store/leveldb_value_store.cc", |
436 "value_store/leveldb_value_store.h", | 439 "value_store/leveldb_value_store.h", |
437 "value_store/testing_value_store.cc", | 440 "value_store/testing_value_store.cc", |
438 "value_store/testing_value_store.h", | 441 "value_store/testing_value_store.h", |
439 "value_store/value_store.cc", | 442 "value_store/value_store.cc", |
440 "value_store/value_store.h", | 443 "value_store/value_store.h", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 ] | 478 ] |
476 } | 479 } |
477 } | 480 } |
478 | 481 |
479 if (is_win) { | 482 if (is_win) { |
480 cflags = [ | 483 cflags = [ |
481 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 484 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
482 ] | 485 ] |
483 } | 486 } |
484 } | 487 } |
OLD | NEW |