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

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

Issue 868933003: Remove user gesture tracking (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 "WebImageDecoder.cpp", 67 "WebImageDecoder.cpp",
68 "WebInputEventConversion.cpp", 68 "WebInputEventConversion.cpp",
69 "WebInputEventConversion.h", 69 "WebInputEventConversion.h",
70 "Sky.cpp", 70 "Sky.cpp",
71 "WebLeakDetector.cpp", 71 "WebLeakDetector.cpp",
72 "WebLocalFrameImpl.cpp", 72 "WebLocalFrameImpl.cpp",
73 "WebLocalFrameImpl.h", 73 "WebLocalFrameImpl.h",
74 "WebNode.cpp", 74 "WebNode.cpp",
75 "WebRange.cpp", 75 "WebRange.cpp",
76 "WebRuntimeFeatures.cpp", 76 "WebRuntimeFeatures.cpp",
77 "WebScopedUserGesture.cpp",
78 "WebScriptBindings.cpp", 77 "WebScriptBindings.cpp",
79 "WebScriptController.cpp", 78 "WebScriptController.cpp",
80 "WebSettingsImpl.cpp", 79 "WebSettingsImpl.cpp",
81 "WebSettingsImpl.h", 80 "WebSettingsImpl.h",
82 "WebTextCheckingCompletionImpl.cpp", 81 "WebTextCheckingCompletionImpl.cpp",
83 "WebTextCheckingCompletionImpl.h", 82 "WebTextCheckingCompletionImpl.h",
84 "WebTextCheckingResult.cpp", 83 "WebTextCheckingResult.cpp",
85 "WebTextInputInfo.cpp", 84 "WebTextInputInfo.cpp",
86 "WebTextRun.cpp", 85 "WebTextRun.cpp",
87 "WebUserGestureIndicator.cpp",
88 "WebUserGestureToken.cpp",
89 "WebViewImpl.cpp", 86 "WebViewImpl.cpp",
90 "WebViewImpl.h", 87 "WebViewImpl.h",
91 "linux/WebFontRendering.cpp", 88 "linux/WebFontRendering.cpp",
92 ] 89 ]
93 90
94 if (is_component_build) { 91 if (is_component_build) {
95 deps += [ 92 deps += [
96 "//base/test:test_support", 93 "//base/test:test_support",
97 "//testing/gmock", 94 "//testing/gmock",
98 "//testing/gtest", 95 "//testing/gtest",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 configs += [ "//sky/engine:config" ] 153 configs += [ "//sky/engine:config" ]
157 154
158 if (!is_component_build) { 155 if (!is_component_build) {
159 deps += [ "//sky/engine/core" ] 156 deps += [ "//sky/engine/core" ]
160 157
161 configs += [ "//sky/engine:inside_blink" ] 158 configs += [ "//sky/engine:inside_blink" ]
162 159
163 sources += platform_web_unittest_files 160 sources += platform_web_unittest_files
164 } 161 }
165 } 162 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698