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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 "file_reader.cc", | 287 "file_reader.cc", |
288 "file_reader.h", | 288 "file_reader.h", |
289 "granted_file_entry.cc", | 289 "granted_file_entry.cc", |
290 "granted_file_entry.h", | 290 "granted_file_entry.h", |
291 "guest_view/app_view/app_view_constants.cc", | 291 "guest_view/app_view/app_view_constants.cc", |
292 "guest_view/app_view/app_view_constants.h", | 292 "guest_view/app_view/app_view_constants.h", |
293 "guest_view/app_view/app_view_guest.cc", | 293 "guest_view/app_view/app_view_guest.cc", |
294 "guest_view/app_view/app_view_guest.h", | 294 "guest_view/app_view/app_view_guest.h", |
295 "guest_view/app_view/app_view_guest_delegate.cc", | 295 "guest_view/app_view/app_view_guest_delegate.cc", |
296 "guest_view/app_view/app_view_guest_delegate.h", | 296 "guest_view/app_view/app_view_guest_delegate.h", |
| 297 "guest_view/extension_options/extension_options_guest_delegate.cc", |
| 298 "guest_view/extension_options/extension_options_guest_delegate.h", |
297 "guest_view/guest_view_base.cc", | 299 "guest_view/guest_view_base.cc", |
298 "guest_view/guest_view_base.h", | 300 "guest_view/guest_view_base.h", |
299 "guest_view/guest_view_constants.cc", | 301 "guest_view/guest_view_constants.cc", |
300 "guest_view/guest_view_constants.h", | 302 "guest_view/guest_view_constants.h", |
301 "guest_view/guest_view_manager_factory.h", | 303 "guest_view/guest_view_manager_factory.h", |
302 "guest_view/guest_view_manager.cc", | 304 "guest_view/guest_view_manager.cc", |
303 "guest_view/guest_view_manager.h", | 305 "guest_view/guest_view_manager.h", |
304 "guest_view/guest_view.h", | 306 "guest_view/guest_view.h", |
305 "guest_view/mime_handler_view/mime_handler_view_constants.cc", | 307 "guest_view/mime_handler_view/mime_handler_view_constants.cc", |
306 "guest_view/mime_handler_view/mime_handler_view_constants.h", | 308 "guest_view/mime_handler_view/mime_handler_view_constants.h", |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 ] | 404 ] |
403 } | 405 } |
404 } | 406 } |
405 | 407 |
406 if (is_win) { | 408 if (is_win) { |
407 cflags = [ | 409 cflags = [ |
408 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 410 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
409 ] | 411 ] |
410 } | 412 } |
411 } | 413 } |
OLD | NEW |