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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 "process_map_factory.h", | 411 "process_map_factory.h", |
412 "quota_service.cc", | 412 "quota_service.cc", |
413 "quota_service.h", | 413 "quota_service.h", |
414 "renderer_startup_helper.cc", | 414 "renderer_startup_helper.cc", |
415 "renderer_startup_helper.h", | 415 "renderer_startup_helper.h", |
416 "runtime_data.cc", | 416 "runtime_data.cc", |
417 "runtime_data.h", | 417 "runtime_data.h", |
418 "script_execution_observer.h", | 418 "script_execution_observer.h", |
419 "script_executor.cc", | 419 "script_executor.cc", |
420 "script_executor.h", | 420 "script_executor.h", |
| 421 "service_registration_manager.cc", |
| 422 "service_registration_manager.h", |
421 "stash_backend.cc", | 423 "stash_backend.cc", |
422 "stash_backend.h", | 424 "stash_backend.h", |
423 "state_store.cc", | 425 "state_store.cc", |
424 "state_store.h", | 426 "state_store.h", |
425 "suggest_permission_util.cc", | 427 "suggest_permission_util.cc", |
426 "suggest_permission_util.h", | 428 "suggest_permission_util.h", |
427 "uninstall_reason.h", | 429 "uninstall_reason.h", |
428 "update_observer.h", | 430 "update_observer.h", |
429 "updater/manifest_fetch_data.cc", | 431 "updater/manifest_fetch_data.cc", |
430 "updater/manifest_fetch_data.h", | 432 "updater/manifest_fetch_data.h", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 ] | 477 ] |
476 } | 478 } |
477 } | 479 } |
478 | 480 |
479 if (is_win) { | 481 if (is_win) { |
480 cflags = [ | 482 cflags = [ |
481 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 483 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
482 ] | 484 ] |
483 } | 485 } |
484 } | 486 } |
OLD | NEW |