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