| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "WebExport.h", | 46 "WebExport.h", |
| 47 "WebFactoryImpl.cpp", | 47 "WebFactoryImpl.cpp", |
| 48 "WebFactoryImpl.h", | 48 "WebFactoryImpl.h", |
| 49 "WebFormElementObserverImpl.cpp", | 49 "WebFormElementObserverImpl.cpp", |
| 50 "WebFormElementObserverImpl.h", | 50 "WebFormElementObserverImpl.h", |
| 51 "WebFrameWidgetImpl.cpp", | 51 "WebFrameWidgetImpl.cpp", |
| 52 "WebFrameWidgetImpl.h", | 52 "WebFrameWidgetImpl.h", |
| 53 "WebKit.cpp", | 53 "WebKit.cpp", |
| 54 "WebLocalFrameImpl.cpp", | 54 "WebLocalFrameImpl.cpp", |
| 55 "WebLocalFrameImpl.h", | 55 "WebLocalFrameImpl.h", |
| 56 "WebV8SnapshotUtil.cpp", |
| 56 "WebViewImpl.cpp", | 57 "WebViewImpl.cpp", |
| 57 "WebViewImpl.h", | 58 "WebViewImpl.h", |
| 58 ] | 59 ] |
| 59 | 60 |
| 60 if (is_mac) { | 61 if (is_mac) { |
| 61 libs = [ | 62 libs = [ |
| 62 "AppKit.framework", | 63 "AppKit.framework", |
| 63 "Foundation.framework", | 64 "Foundation.framework", |
| 64 ] | 65 ] |
| 65 } | 66 } |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 187 |
| 187 if (is_android) { | 188 if (is_android) { |
| 188 deps += [ | 189 deps += [ |
| 189 "//base:base_java", | 190 "//base:base_java", |
| 190 "//content/public/android:content_java", | 191 "//content/public/android:content_java", |
| 191 "//content/shell/android:content_shell_assets", | 192 "//content/shell/android:content_shell_assets", |
| 192 "//net/android:net_java", | 193 "//net/android:net_java", |
| 193 ] | 194 ] |
| 194 } | 195 } |
| 195 } | 196 } |
| OLD | NEW |