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