| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "WebFactoryImpl.cpp", | 49 "WebFactoryImpl.cpp", |
| 50 "WebFactoryImpl.h", | 50 "WebFactoryImpl.h", |
| 51 "WebFormElementObserverImpl.cpp", | 51 "WebFormElementObserverImpl.cpp", |
| 52 "WebFormElementObserverImpl.h", | 52 "WebFormElementObserverImpl.h", |
| 53 "WebFrameWidgetImpl.cpp", | 53 "WebFrameWidgetImpl.cpp", |
| 54 "WebFrameWidgetImpl.h", | 54 "WebFrameWidgetImpl.h", |
| 55 "WebHitTestResult.cpp", | 55 "WebHitTestResult.cpp", |
| 56 "WebKit.cpp", | 56 "WebKit.cpp", |
| 57 "WebLocalFrameImpl.cpp", | 57 "WebLocalFrameImpl.cpp", |
| 58 "WebLocalFrameImpl.h", | 58 "WebLocalFrameImpl.h", |
| 59 "WebV8SnapshotUtil.cpp", |
| 59 "WebViewImpl.cpp", | 60 "WebViewImpl.cpp", |
| 60 "WebViewImpl.h", | 61 "WebViewImpl.h", |
| 61 ] | 62 ] |
| 62 | 63 |
| 63 if (is_mac) { | 64 if (is_mac) { |
| 64 libs = [ | 65 libs = [ |
| 65 "AppKit.framework", | 66 "AppKit.framework", |
| 66 "Foundation.framework", | 67 "Foundation.framework", |
| 67 ] | 68 ] |
| 68 } | 69 } |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 192 |
| 192 if (is_android) { | 193 if (is_android) { |
| 193 deps += [ | 194 deps += [ |
| 194 "//base:base_java", | 195 "//base:base_java", |
| 195 "//content/public/android:content_java", | 196 "//content/public/android:content_java", |
| 196 "//content/shell/android:content_shell_assets", | 197 "//content/shell/android:content_shell_assets", |
| 197 "//net/android:net_java", | 198 "//net/android:net_java", |
| 198 ] | 199 ] |
| 199 } | 200 } |
| 200 } | 201 } |
| OLD | NEW |