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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 "file_reader.cc", | 303 "file_reader.cc", |
304 "file_reader.h", | 304 "file_reader.h", |
305 "granted_file_entry.cc", | 305 "granted_file_entry.cc", |
306 "granted_file_entry.h", | 306 "granted_file_entry.h", |
307 "guest_view/app_view/app_view_constants.cc", | 307 "guest_view/app_view/app_view_constants.cc", |
308 "guest_view/app_view/app_view_constants.h", | 308 "guest_view/app_view/app_view_constants.h", |
309 "guest_view/app_view/app_view_guest.cc", | 309 "guest_view/app_view/app_view_guest.cc", |
310 "guest_view/app_view/app_view_guest.h", | 310 "guest_view/app_view/app_view_guest.h", |
311 "guest_view/app_view/app_view_guest_delegate.cc", | 311 "guest_view/app_view/app_view_guest_delegate.cc", |
312 "guest_view/app_view/app_view_guest_delegate.h", | 312 "guest_view/app_view/app_view_guest_delegate.h", |
| 313 "guest_view/extension_options/extension_options_constants.cc", |
| 314 "guest_view/extension_options/extension_options_constants.h", |
| 315 "guest_view/extension_options/extension_options_guest.cc", |
| 316 "guest_view/extension_options/extension_options_guest.h", |
| 317 "guest_view/extension_options/extension_options_guest_delegate.cc", |
| 318 "guest_view/extension_options/extension_options_guest_delegate.h", |
313 "guest_view/guest_view_base.cc", | 319 "guest_view/guest_view_base.cc", |
314 "guest_view/guest_view_base.h", | 320 "guest_view/guest_view_base.h", |
315 "guest_view/guest_view_constants.cc", | 321 "guest_view/guest_view_constants.cc", |
316 "guest_view/guest_view_constants.h", | 322 "guest_view/guest_view_constants.h", |
317 "guest_view/guest_view_manager_factory.h", | 323 "guest_view/guest_view_manager_factory.h", |
318 "guest_view/guest_view_manager.cc", | 324 "guest_view/guest_view_manager.cc", |
319 "guest_view/guest_view_manager.h", | 325 "guest_view/guest_view_manager.h", |
320 "guest_view/guest_view.h", | 326 "guest_view/guest_view.h", |
321 "guest_view/mime_handler_view/mime_handler_view_constants.cc", | 327 "guest_view/mime_handler_view/mime_handler_view_constants.cc", |
322 "guest_view/mime_handler_view/mime_handler_view_constants.h", | 328 "guest_view/mime_handler_view/mime_handler_view_constants.h", |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 ] | 425 ] |
420 } | 426 } |
421 } | 427 } |
422 | 428 |
423 if (is_win) { | 429 if (is_win) { |
424 cflags = [ | 430 cflags = [ |
425 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 431 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
426 ] | 432 ] |
427 } | 433 } |
428 } | 434 } |
OLD | NEW |