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

Side by Side Diff: third_party/WebKit/Source/core/frame/BUILD.gn

Issue 2379923002: Implement "appinstalled" event on Android. (Closed)
Patch Set: Minor refactor. Created 4 years, 2 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("//third_party/WebKit/Source/core/core.gni") 5 import("//third_party/WebKit/Source/core/core.gni")
6 6
7 blink_core_sources("frame") { 7 blink_core_sources("frame") {
8 sources = [ 8 sources = [
9 "BarProp.cpp", 9 "BarProp.cpp",
10 "BarProp.h", 10 "BarProp.h",
11 "DOMTimer.cpp", 11 "DOMTimer.cpp",
12 "DOMTimer.h", 12 "DOMTimer.h",
13 "DOMTimerCoordinator.cpp", 13 "DOMTimerCoordinator.cpp",
14 "DOMTimerCoordinator.h", 14 "DOMTimerCoordinator.h",
15 "DOMVisualViewport.cpp", 15 "DOMVisualViewport.cpp",
16 "DOMVisualViewport.h", 16 "DOMVisualViewport.h",
17 "DOMWindow.cpp", 17 "DOMWindow.cpp",
18 "DOMWindow.h", 18 "DOMWindow.h",
19 "DOMWindowBase64.cpp", 19 "DOMWindowBase64.cpp",
20 "DOMWindowBase64.h", 20 "DOMWindowBase64.h",
21 "DOMWindowEventHandlers.h", 21 "DOMWindowEventHandlers.h",
22 "DOMWindowInstallation.h",
22 "DOMWindowProperty.cpp", 23 "DOMWindowProperty.cpp",
23 "DOMWindowProperty.h", 24 "DOMWindowProperty.h",
24 "DOMWindowTimers.cpp", 25 "DOMWindowTimers.cpp",
25 "DOMWindowTimers.h", 26 "DOMWindowTimers.h",
26 "DeprecatedScheduleStyleRecalcDuringLayout.cpp", 27 "DeprecatedScheduleStyleRecalcDuringLayout.cpp",
27 "DeprecatedScheduleStyleRecalcDuringLayout.h", 28 "DeprecatedScheduleStyleRecalcDuringLayout.h",
28 "Deprecation.cpp", 29 "Deprecation.cpp",
29 "Deprecation.h", 30 "Deprecation.h",
30 "DeviceSingleWindowEventController.cpp", 31 "DeviceSingleWindowEventController.cpp",
31 "DeviceSingleWindowEventController.h", 32 "DeviceSingleWindowEventController.h",
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 "csp/ContentSecurityPolicy.cpp", 106 "csp/ContentSecurityPolicy.cpp",
106 "csp/MediaListDirective.cpp", 107 "csp/MediaListDirective.cpp",
107 "csp/SourceListDirective.cpp", 108 "csp/SourceListDirective.cpp",
108 ] 109 ]
109 110
110 configs += [ 111 configs += [
111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
112 "//build/config/compiler:no_size_t_to_int_warning", 113 "//build/config/compiler:no_size_t_to_int_warning",
113 ] 114 ]
114 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698