Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: extensions/browser/BUILD.gn

Issue 556723002: Add delegate to install web_contents helpers for MimeHandlerView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync @tott Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 "guest_view/guest_view_constants.cc", 299 "guest_view/guest_view_constants.cc",
300 "guest_view/guest_view_constants.h", 300 "guest_view/guest_view_constants.h",
301 "guest_view/guest_view_manager_factory.h", 301 "guest_view/guest_view_manager_factory.h",
302 "guest_view/guest_view_manager.cc", 302 "guest_view/guest_view_manager.cc",
303 "guest_view/guest_view_manager.h", 303 "guest_view/guest_view_manager.h",
304 "guest_view/guest_view.h", 304 "guest_view/guest_view.h",
305 "guest_view/mime_handler_view/mime_handler_view_constants.cc", 305 "guest_view/mime_handler_view/mime_handler_view_constants.cc",
306 "guest_view/mime_handler_view/mime_handler_view_constants.h", 306 "guest_view/mime_handler_view/mime_handler_view_constants.h",
307 "guest_view/mime_handler_view/mime_handler_view_guest.h", 307 "guest_view/mime_handler_view/mime_handler_view_guest.h",
308 "guest_view/mime_handler_view/mime_handler_view_guest.cc", 308 "guest_view/mime_handler_view/mime_handler_view_guest.cc",
309 "guest_view/mime_handler_view/mime_handler_view_guest_delegate.h",
309 "guest_view/web_view/javascript_dialog_helper.cc", 310 "guest_view/web_view/javascript_dialog_helper.cc",
310 "guest_view/web_view/javascript_dialog_helper.h", 311 "guest_view/web_view/javascript_dialog_helper.h",
311 "guest_view/web_view/web_view_constants.cc", 312 "guest_view/web_view/web_view_constants.cc",
312 "guest_view/web_view/web_view_constants.h", 313 "guest_view/web_view/web_view_constants.h",
313 "guest_view/web_view/web_view_guest.cc", 314 "guest_view/web_view/web_view_guest.cc",
314 "guest_view/web_view/web_view_guest.h", 315 "guest_view/web_view/web_view_guest.h",
315 "guest_view/web_view/web_view_guest_delegate.cc", 316 "guest_view/web_view/web_view_guest_delegate.cc",
316 "guest_view/web_view/web_view_guest_delegate.h", 317 "guest_view/web_view/web_view_guest_delegate.h",
317 "guest_view/web_view/web_view_permission_types.h", 318 "guest_view/web_view/web_view_permission_types.h",
318 "guest_view/web_view/web_view_permission_helper.cc", 319 "guest_view/web_view/web_view_permission_helper.cc",
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 ] 403 ]
403 } 404 }
404 } 405 }
405 406
406 if (is_win) { 407 if (is_win) {
407 cflags = [ 408 cflags = [
408 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 409 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
409 ] 410 ]
410 } 411 }
411 } 412 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698