| 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 "url_request_util.cc", |
| 398 "url_request_util.h", |
| 397 "value_store/leveldb_value_store.cc", | 399 "value_store/leveldb_value_store.cc", |
| 398 "value_store/leveldb_value_store.h", | 400 "value_store/leveldb_value_store.h", |
| 399 "value_store/testing_value_store.cc", | 401 "value_store/testing_value_store.cc", |
| 400 "value_store/testing_value_store.h", | 402 "value_store/testing_value_store.h", |
| 401 "value_store/value_store.cc", | 403 "value_store/value_store.cc", |
| 402 "value_store/value_store.h", | 404 "value_store/value_store.h", |
| 403 "value_store/value_store_change.cc", | 405 "value_store/value_store_change.cc", |
| 404 "value_store/value_store_change.h", | 406 "value_store/value_store_change.h", |
| 405 "value_store/value_store_frontend.cc", | 407 "value_store/value_store_frontend.cc", |
| 406 "value_store/value_store_frontend.h", | 408 "value_store/value_store_frontend.h", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 437 ] | 439 ] |
| 438 } | 440 } |
| 439 } | 441 } |
| 440 | 442 |
| 441 if (is_win) { | 443 if (is_win) { |
| 442 cflags = [ | 444 cflags = [ |
| 443 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 445 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 444 ] | 446 ] |
| 445 } | 447 } |
| 446 } | 448 } |
| OLD | NEW |