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