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

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

Issue 376033002: Adding MimeHandlerView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pending-zork-patch2
Patch Set: Address comment from kenrb@ 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
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | extensions/browser/extension_message_filter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 "guest_view/app_view/app_view_guest_delegate.cc", 291 "guest_view/app_view/app_view_guest_delegate.cc",
292 "guest_view/app_view/app_view_guest_delegate.h", 292 "guest_view/app_view/app_view_guest_delegate.h",
293 "guest_view/guest_view_base.cc", 293 "guest_view/guest_view_base.cc",
294 "guest_view/guest_view_base.h", 294 "guest_view/guest_view_base.h",
295 "guest_view/guest_view_constants.cc", 295 "guest_view/guest_view_constants.cc",
296 "guest_view/guest_view_constants.h", 296 "guest_view/guest_view_constants.h",
297 "guest_view/guest_view_manager_factory.h", 297 "guest_view/guest_view_manager_factory.h",
298 "guest_view/guest_view_manager.cc", 298 "guest_view/guest_view_manager.cc",
299 "guest_view/guest_view_manager.h", 299 "guest_view/guest_view_manager.h",
300 "guest_view/guest_view.h", 300 "guest_view/guest_view.h",
301 "guest_view/mime_handler_view/mime_handler_view_constants.cc",
302 "guest_view/mime_handler_view/mime_handler_view_constants.h",
303 "guest_view/mime_handler_view/mime_handler_view_guest.h",
304 "guest_view/mime_handler_view/mime_handler_view_guest.cc",
301 "guest_view/web_view/javascript_dialog_helper.cc", 305 "guest_view/web_view/javascript_dialog_helper.cc",
302 "guest_view/web_view/javascript_dialog_helper.h", 306 "guest_view/web_view/javascript_dialog_helper.h",
303 "guest_view/web_view/web_view_constants.cc", 307 "guest_view/web_view/web_view_constants.cc",
304 "guest_view/web_view/web_view_constants.h", 308 "guest_view/web_view/web_view_constants.h",
305 "guest_view/web_view/web_view_guest.cc", 309 "guest_view/web_view/web_view_guest.cc",
306 "guest_view/web_view/web_view_guest.h", 310 "guest_view/web_view/web_view_guest.h",
307 "guest_view/web_view/web_view_guest_delegate.cc", 311 "guest_view/web_view/web_view_guest_delegate.cc",
308 "guest_view/web_view/web_view_guest_delegate.h", 312 "guest_view/web_view/web_view_guest_delegate.h",
309 "guest_view/web_view/web_view_permission_types.h", 313 "guest_view/web_view/web_view_permission_types.h",
310 "guest_view/web_view/web_view_permission_helper.cc", 314 "guest_view/web_view/web_view_permission_helper.cc",
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 ] 397 ]
394 } 398 }
395 } 399 }
396 400
397 if (is_win) { 401 if (is_win) {
398 cflags = [ 402 cflags = [
399 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 403 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
400 ] 404 ]
401 } 405 }
402 } 406 }
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | extensions/browser/extension_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698