| 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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 "process_map.cc", | 463 "process_map.cc", |
| 464 "process_map.h", | 464 "process_map.h", |
| 465 "process_map_factory.cc", | 465 "process_map_factory.cc", |
| 466 "process_map_factory.h", | 466 "process_map_factory.h", |
| 467 "quota_service.cc", | 467 "quota_service.cc", |
| 468 "quota_service.h", | 468 "quota_service.h", |
| 469 "renderer_startup_helper.cc", | 469 "renderer_startup_helper.cc", |
| 470 "renderer_startup_helper.h", | 470 "renderer_startup_helper.h", |
| 471 "runtime_data.cc", | 471 "runtime_data.cc", |
| 472 "runtime_data.h", | 472 "runtime_data.h", |
| 473 "sandboxed_unpacker.cc", |
| 474 "sandboxed_unpacker.h", |
| 473 "script_execution_observer.h", | 475 "script_execution_observer.h", |
| 474 "script_executor.cc", | 476 "script_executor.cc", |
| 475 "script_executor.h", | 477 "script_executor.h", |
| 476 "state_store.cc", | 478 "state_store.cc", |
| 477 "state_store.h", | 479 "state_store.h", |
| 478 "suggest_permission_util.cc", | 480 "suggest_permission_util.cc", |
| 479 "suggest_permission_util.h", | 481 "suggest_permission_util.h", |
| 480 "uninstall_reason.h", | 482 "uninstall_reason.h", |
| 481 "update_observer.h", | 483 "update_observer.h", |
| 482 "updater/extension_cache.h", | 484 "updater/extension_cache.h", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 sources += [ "api/audio/audio_service_linux.cc" ] | 555 sources += [ "api/audio/audio_service_linux.cc" ] |
| 554 } else { | 556 } else { |
| 555 sources += [ "api/audio/audio_service.cc" ] | 557 sources += [ "api/audio/audio_service.cc" ] |
| 556 } | 558 } |
| 557 } | 559 } |
| 558 | 560 |
| 559 if (is_win) { | 561 if (is_win) { |
| 560 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 562 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
| 561 } | 563 } |
| 562 } | 564 } |
| OLD | NEW |