| 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 "runtime_data.h", | 387 "runtime_data.h", |
| 388 "script_execution_observer.h", | 388 "script_execution_observer.h", |
| 389 "script_executor.cc", | 389 "script_executor.cc", |
| 390 "script_executor.h", | 390 "script_executor.h", |
| 391 "state_store.cc", | 391 "state_store.cc", |
| 392 "state_store.h", | 392 "state_store.h", |
| 393 "suggest_permission_util.cc", | 393 "suggest_permission_util.cc", |
| 394 "suggest_permission_util.h", | 394 "suggest_permission_util.h", |
| 395 "uninstall_reason.h", | 395 "uninstall_reason.h", |
| 396 "update_observer.h", | 396 "update_observer.h", |
| 397 "updater/manifest_fetch_data.cc", |
| 398 "updater/manifest_fetch_data.h", |
| 397 "url_request_util.cc", | 399 "url_request_util.cc", |
| 398 "url_request_util.h", | 400 "url_request_util.h", |
| 399 "value_store/leveldb_value_store.cc", | 401 "value_store/leveldb_value_store.cc", |
| 400 "value_store/leveldb_value_store.h", | 402 "value_store/leveldb_value_store.h", |
| 401 "value_store/testing_value_store.cc", | 403 "value_store/testing_value_store.cc", |
| 402 "value_store/testing_value_store.h", | 404 "value_store/testing_value_store.h", |
| 403 "value_store/value_store.cc", | 405 "value_store/value_store.cc", |
| 404 "value_store/value_store.h", | 406 "value_store/value_store.h", |
| 405 "value_store/value_store_change.cc", | 407 "value_store/value_store_change.cc", |
| 406 "value_store/value_store_change.h", | 408 "value_store/value_store_change.h", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 ] | 441 ] |
| 440 } | 442 } |
| 441 } | 443 } |
| 442 | 444 |
| 443 if (is_win) { | 445 if (is_win) { |
| 444 cflags = [ | 446 cflags = [ |
| 445 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 447 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 446 ] | 448 ] |
| 447 } | 449 } |
| 448 } | 450 } |
| OLD | NEW |