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