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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 "WebDevToolsAgentImpl.cpp", | 45 "WebDevToolsAgentImpl.cpp", |
46 "WebDevToolsAgentImpl.h", | 46 "WebDevToolsAgentImpl.h", |
47 "WebExport.h", | 47 "WebExport.h", |
48 "WebFactoryImpl.cpp", | 48 "WebFactoryImpl.cpp", |
49 "WebFactoryImpl.h", | 49 "WebFactoryImpl.h", |
50 "WebFrameWidgetImpl.cpp", | 50 "WebFrameWidgetImpl.cpp", |
51 "WebFrameWidgetImpl.h", | 51 "WebFrameWidgetImpl.h", |
52 "WebKit.cpp", | 52 "WebKit.cpp", |
53 "WebLocalFrameImpl.cpp", | 53 "WebLocalFrameImpl.cpp", |
54 "WebLocalFrameImpl.h", | 54 "WebLocalFrameImpl.h", |
| 55 "WebV8ContextSnapshot.cpp", |
55 "WebViewImpl.cpp", | 56 "WebViewImpl.cpp", |
56 "WebViewImpl.h", | 57 "WebViewImpl.h", |
57 ] | 58 ] |
58 | 59 |
59 if (is_mac) { | 60 if (is_mac) { |
60 libs = [ | 61 libs = [ |
61 "AppKit.framework", | 62 "AppKit.framework", |
62 "Foundation.framework", | 63 "Foundation.framework", |
63 ] | 64 ] |
64 } | 65 } |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 | 136 |
136 if (is_android) { | 137 if (is_android) { |
137 deps += [ | 138 deps += [ |
138 "//base:base_java", | 139 "//base:base_java", |
139 "//content/public/android:content_java", | 140 "//content/public/android:content_java", |
140 "//content/shell/android:content_shell_assets", | 141 "//content/shell/android:content_shell_assets", |
141 "//net/android:net_java", | 142 "//net/android:net_java", |
142 ] | 143 ] |
143 } | 144 } |
144 } | 145 } |
OLD | NEW |