OLD | NEW |
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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//third_party/WebKit/Source/bindings/bindings.gni") | 7 import("//third_party/WebKit/Source/bindings/bindings.gni") |
8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
9 import("//third_party/WebKit/Source/core/core.gni") | 9 import("//third_party/WebKit/Source/core/core.gni") |
10 import("//third_party/WebKit/Source/modules/modules.gni") | 10 import("//third_party/WebKit/Source/modules/modules.gni") |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 "WebDevToolsAgentImpl.cpp", | 123 "WebDevToolsAgentImpl.cpp", |
124 "WebDevToolsAgentImpl.h", | 124 "WebDevToolsAgentImpl.h", |
125 "WebDevToolsFrontendImpl.cpp", | 125 "WebDevToolsFrontendImpl.cpp", |
126 "WebDevToolsFrontendImpl.h", | 126 "WebDevToolsFrontendImpl.h", |
127 "WebDocument.cpp", | 127 "WebDocument.cpp", |
128 "WebElement.cpp", | 128 "WebElement.cpp", |
129 "WebElementCollection.cpp", | 129 "WebElementCollection.cpp", |
130 "WebEmbeddedWorkerImpl.cpp", | 130 "WebEmbeddedWorkerImpl.cpp", |
131 "WebEmbeddedWorkerImpl.h", | 131 "WebEmbeddedWorkerImpl.h", |
132 "WebExport.h", | 132 "WebExport.h", |
| 133 "WebFactoryImpl.cpp", |
| 134 "WebFactoryImpl.h", |
133 "WebFormControlElement.cpp", | 135 "WebFormControlElement.cpp", |
134 "WebFormElement.cpp", | 136 "WebFormElement.cpp", |
135 "WebFormElementObserverImpl.cpp", | 137 "WebFormElementObserverImpl.cpp", |
136 "WebFormElementObserverImpl.h", | 138 "WebFormElementObserverImpl.h", |
137 "WebFrame.cpp", | 139 "WebFrame.cpp", |
138 "WebFrameContentDumper.cpp", | 140 "WebFrameContentDumper.cpp", |
139 "WebFrameSerializer.cpp", | 141 "WebFrameSerializer.cpp", |
140 "WebFrameSerializerImpl.cpp", | 142 "WebFrameSerializerImpl.cpp", |
141 "WebFrameSerializerImpl.h", | 143 "WebFrameSerializerImpl.h", |
142 "WebFrameWidgetImpl.cpp", | 144 "WebFrameWidgetImpl.cpp", |
143 "WebFrameWidgetImpl.h", | 145 "WebFrameWidgetImpl.h", |
144 "WebHelperPluginImpl.cpp", | 146 "WebHelperPluginImpl.cpp", |
145 "WebHelperPluginImpl.h", | 147 "WebHelperPluginImpl.h", |
146 "WebHitTestResult.cpp", | 148 "WebHitTestResult.cpp", |
147 "WebIDBKey.cpp", | 149 "WebIDBKey.cpp", |
148 "WebIDBKeyRange.cpp", | 150 "WebIDBKeyRange.cpp", |
| 151 "WebInitializer.cpp", |
| 152 "WebInitializer.h", |
149 "WebInputElement.cpp", | 153 "WebInputElement.cpp", |
150 "WebInputEvent.cpp", | 154 "WebInputEvent.cpp", |
151 "WebInputMethodControllerImpl.cpp", | 155 "WebInputMethodControllerImpl.cpp", |
152 "WebInputMethodControllerImpl.h", | 156 "WebInputMethodControllerImpl.h", |
153 "WebKit.cpp", | 157 "WebKit.cpp", |
154 "WebLabelElement.cpp", | 158 "WebLabelElement.cpp", |
155 "WebLanguageDetectionDetails.cpp", | 159 "WebLanguageDetectionDetails.cpp", |
156 "WebLeakDetector.cpp", | 160 "WebLeakDetector.cpp", |
157 "WebLocalFrameImpl.cpp", | 161 "WebLocalFrameImpl.cpp", |
158 "WebLocalFrameImpl.h", | 162 "WebLocalFrameImpl.h", |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 | 392 |
389 if (is_android) { | 393 if (is_android) { |
390 deps += [ | 394 deps += [ |
391 "//base:base_java", | 395 "//base:base_java", |
392 "//content/public/android:content_java", | 396 "//content/public/android:content_java", |
393 "//content/shell/android:content_shell_assets", | 397 "//content/shell/android:content_shell_assets", |
394 "//net/android:net_java", | 398 "//net/android:net_java", |
395 ] | 399 ] |
396 } | 400 } |
397 } | 401 } |
OLD | NEW |