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

Side by Side Diff: sky/engine/web/BUILD.gn

Issue 872233002: Switch KeyboardEvents over to NewEventHandler (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: nits Created 5 years, 11 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//sky/engine/config.gni") 6 import("//sky/engine/config.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 visibility = [ "//sky/*" ] 9 visibility = [ "//sky/*" ]
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 "SpellCheckerClientImpl.h", 53 "SpellCheckerClientImpl.h",
54 "WebCache.cpp", 54 "WebCache.cpp",
55 "WebCachedURLRequest.cpp", 55 "WebCachedURLRequest.cpp",
56 "WebDocument.cpp", 56 "WebDocument.cpp",
57 "WebElement.cpp", 57 "WebElement.cpp",
58 "WebFontDescription.cpp", 58 "WebFontDescription.cpp",
59 "WebFontImpl.cpp", 59 "WebFontImpl.cpp",
60 "WebFontImpl.h", 60 "WebFontImpl.h",
61 "WebFrame.cpp", 61 "WebFrame.cpp",
62 "WebHitTestResult.cpp", 62 "WebHitTestResult.cpp",
63 "WebInputEventConversion.cpp",
64 "WebInputEventConversion.h",
65 "Sky.cpp", 63 "Sky.cpp",
66 "WebLeakDetector.cpp", 64 "WebLeakDetector.cpp",
67 "WebLocalFrameImpl.cpp", 65 "WebLocalFrameImpl.cpp",
68 "WebLocalFrameImpl.h", 66 "WebLocalFrameImpl.h",
69 "WebNode.cpp", 67 "WebNode.cpp",
70 "WebRange.cpp", 68 "WebRange.cpp",
71 "WebRuntimeFeatures.cpp", 69 "WebRuntimeFeatures.cpp",
72 "WebSettingsImpl.cpp", 70 "WebSettingsImpl.cpp",
73 "WebSettingsImpl.h", 71 "WebSettingsImpl.h",
74 "WebTextCheckingCompletionImpl.cpp", 72 "WebTextCheckingCompletionImpl.cpp",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 configs += [ "//sky/engine:config" ] 108 configs += [ "//sky/engine:config" ]
111 109
112 if (!is_component_build) { 110 if (!is_component_build) {
113 deps += [ "//sky/engine/core" ] 111 deps += [ "//sky/engine/core" ]
114 112
115 configs += [ "//sky/engine:inside_blink" ] 113 configs += [ "//sky/engine:inside_blink" ]
116 114
117 sources += platform_web_unittest_files 115 sources += platform_web_unittest_files
118 } 116 }
119 } 117 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698