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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 "extension_registry_observer.h", | 346 "extension_registry_observer.h", |
347 "extension_scoped_prefs.h", | 347 "extension_scoped_prefs.h", |
348 "extension_system.cc", | 348 "extension_system.cc", |
349 "extension_system.h", | 349 "extension_system.h", |
350 "extension_system_provider.cc", | 350 "extension_system_provider.cc", |
351 "extension_system_provider.h", | 351 "extension_system_provider.h", |
352 "extension_util.cc", | 352 "extension_util.cc", |
353 "extension_util.h", | 353 "extension_util.h", |
354 "extension_web_contents_observer.cc", | 354 "extension_web_contents_observer.cc", |
355 "extension_web_contents_observer.h", | 355 "extension_web_contents_observer.h", |
| 356 "extension_zoom_request_client.cc", |
| 357 "extension_zoom_request_client.h", |
356 "extensions_browser_client.cc", | 358 "extensions_browser_client.cc", |
357 "extensions_browser_client.h", | 359 "extensions_browser_client.h", |
358 "external_provider_interface.h", | 360 "external_provider_interface.h", |
359 "file_highlighter.cc", | 361 "file_highlighter.cc", |
360 "file_highlighter.h", | 362 "file_highlighter.h", |
361 "file_reader.cc", | 363 "file_reader.cc", |
362 "file_reader.h", | 364 "file_reader.h", |
363 "granted_file_entry.cc", | 365 "granted_file_entry.cc", |
364 "granted_file_entry.h", | 366 "granted_file_entry.h", |
365 "guest_view/app_view/app_view_constants.cc", | 367 "guest_view/app_view/app_view_constants.cc", |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 "api/vpn_provider/vpn_service.h", | 523 "api/vpn_provider/vpn_service.h", |
522 "api/vpn_provider/vpn_service_factory.h", | 524 "api/vpn_provider/vpn_service_factory.h", |
523 ] | 525 ] |
524 } | 526 } |
525 } | 527 } |
526 | 528 |
527 if (is_win) { | 529 if (is_win) { |
528 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 530 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
529 } | 531 } |
530 } | 532 } |
OLD | NEW |