| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "WebFactoryImpl.cpp", | 53 "WebFactoryImpl.cpp", |
| 54 "WebFactoryImpl.h", | 54 "WebFactoryImpl.h", |
| 55 "WebFormElementObserverImpl.cpp", | 55 "WebFormElementObserverImpl.cpp", |
| 56 "WebFormElementObserverImpl.h", | 56 "WebFormElementObserverImpl.h", |
| 57 "WebFrameWidgetImpl.cpp", | 57 "WebFrameWidgetImpl.cpp", |
| 58 "WebFrameWidgetImpl.h", | 58 "WebFrameWidgetImpl.h", |
| 59 "WebHitTestResult.cpp", | 59 "WebHitTestResult.cpp", |
| 60 "WebKit.cpp", | 60 "WebKit.cpp", |
| 61 "WebLocalFrameImpl.cpp", | 61 "WebLocalFrameImpl.cpp", |
| 62 "WebLocalFrameImpl.h", | 62 "WebLocalFrameImpl.h", |
| 63 "WebV8SnapshotUtil.cpp", |
| 63 "WebViewImpl.cpp", | 64 "WebViewImpl.cpp", |
| 64 "WebViewImpl.h", | 65 "WebViewImpl.h", |
| 65 ] | 66 ] |
| 66 | 67 |
| 67 if (is_mac) { | 68 if (is_mac) { |
| 68 libs = [ | 69 libs = [ |
| 69 "AppKit.framework", | 70 "AppKit.framework", |
| 70 "Foundation.framework", | 71 "Foundation.framework", |
| 71 ] | 72 ] |
| 72 } | 73 } |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 | 198 |
| 198 if (is_android) { | 199 if (is_android) { |
| 199 deps += [ | 200 deps += [ |
| 200 "//base:base_java", | 201 "//base:base_java", |
| 201 "//content/public/android:content_java", | 202 "//content/public/android:content_java", |
| 202 "//content/shell/android:content_shell_assets", | 203 "//content/shell/android:content_shell_assets", |
| 203 "//net/android:net_java", | 204 "//net/android:net_java", |
| 204 ] | 205 ] |
| 205 } | 206 } |
| 206 } | 207 } |
| OLD | NEW |