| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 deps = [ | 104 deps = [ |
| 105 ":test_support", | 105 ":test_support", |
| 106 ":web", | 106 ":web", |
| 107 "//base", | 107 "//base", |
| 108 "//base:i18n", | 108 "//base:i18n", |
| 109 "//base/test:test_support", | 109 "//base/test:test_support", |
| 110 "//content/test:test_support", | 110 "//content/test:test_support", |
| 111 "//testing/gmock", | 111 "//testing/gmock", |
| 112 "//testing/gtest", | 112 "//testing/gtest", |
| 113 "//third_party/WebKit/Source/platform:test_support", | 113 "//third_party/WebKit/Source/platform:test_support", |
| 114 "//third_party/WebKit/Source/wtf", | |
| 115 "//third_party/WebKit/Source/wtf:test_support", | 114 "//third_party/WebKit/Source/wtf:test_support", |
| 116 "//third_party/libwebp", | 115 "//third_party/libwebp", |
| 117 "//third_party/zlib", | 116 "//third_party/zlib", |
| 118 "//url", | 117 "//url", |
| 119 "//v8", | 118 "//v8", |
| 120 ] | 119 ] |
| 121 | 120 |
| 122 sources = [ | 121 sources = [ |
| 123 "tests/RunAllTests.cpp", | 122 "tests/RunAllTests.cpp", |
| 124 ] | 123 ] |
| (...skipping 14 matching lines...) Expand all Loading... |
| 139 } | 138 } |
| 140 | 139 |
| 141 if (is_android) { | 140 if (is_android) { |
| 142 apk_deps = [ | 141 apk_deps = [ |
| 143 "//base:base_java", | 142 "//base:base_java", |
| 144 "//content/shell/android:content_shell_assets", | 143 "//content/shell/android:content_shell_assets", |
| 145 "//net/android:net_java", | 144 "//net/android:net_java", |
| 146 ] | 145 ] |
| 147 } | 146 } |
| 148 } | 147 } |
| OLD | NEW |