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

Side by Side Diff: public/BUILD.gn

Issue 1319863006: (blink) Propagate scrolling/marginwidth/marginheight property values to child frame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update. Created 5 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 | Annotate | Revision Log
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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 } 9 }
10 10
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 "web/WebDatabase.h", 433 "web/WebDatabase.h",
434 "web/WebDevToolsAgent.h", 434 "web/WebDevToolsAgent.h",
435 "web/WebNode.h", 435 "web/WebNode.h",
436 "web/WebRuntimeFeatures.h", 436 "web/WebRuntimeFeatures.h",
437 "web/WebScopedUserGesture.h", 437 "web/WebScopedUserGesture.h",
438 "web/WebFileChooserCompletion.h", 438 "web/WebFileChooserCompletion.h",
439 "web/WebPrintScalingOption.h", 439 "web/WebPrintScalingOption.h",
440 "web/WebFontDescription.h", 440 "web/WebFontDescription.h",
441 "web/WebDraggableRegion.h", 441 "web/WebDraggableRegion.h",
442 "web/WebAutofillClient.h", 442 "web/WebAutofillClient.h",
443 "web/WebFrameOwnerElement.h",
dcheng 2015/09/02 06:38:26 I don't see this file in this patch.
lazyboy 2015/09/02 16:56:30 It should be WebFrameOwnerProperties.h
443 "web/WebLocalFrame.h", 444 "web/WebLocalFrame.h",
444 "web/WebDragOperation.h", 445 "web/WebDragOperation.h",
445 "web/WebFindOptions.h", 446 "web/WebFindOptions.h",
446 "web/WebElement.h", 447 "web/WebElement.h",
447 "web/WebGeolocationError.h", 448 "web/WebGeolocationError.h",
448 "web/WebFrameLoadType.h", 449 "web/WebFrameLoadType.h",
449 "web/WebArrayBufferConverter.h", 450 "web/WebArrayBufferConverter.h",
450 "web/WebMediaPlayerAction.h", 451 "web/WebMediaPlayerAction.h",
451 "web/WebEmbeddedWorkerStartData.h", 452 "web/WebEmbeddedWorkerStartData.h",
452 "web/WebConsoleMessage.h", 453 "web/WebConsoleMessage.h",
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 grit("image_resources") { 648 grit("image_resources") {
648 output_dir = "$root_gen_dir/blink/public/resources" 649 output_dir = "$root_gen_dir/blink/public/resources"
649 use_qualified_include = true 650 use_qualified_include = true
650 source = "blink_image_resources.grd" 651 source = "blink_image_resources.grd"
651 outputs = [ 652 outputs = [
652 "grit/blink_image_resources.h", 653 "grit/blink_image_resources.h",
653 "blink_image_resources_100_percent.pak", 654 "blink_image_resources_100_percent.pak",
654 "blink_image_resources_200_percent.pak", 655 "blink_image_resources_200_percent.pak",
655 ] 656 ]
656 } 657 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698