| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "//base", | 102 "//base", |
| 103 "//base:i18n", | 103 "//base:i18n", |
| 104 "//base/test:test_support", | 104 "//base/test:test_support", |
| 105 "//content/test:test_support", | 105 "//content/test:test_support", |
| 106 "//gpu:test_support", | 106 "//gpu:test_support", |
| 107 "//mojo/edk/system:system", | 107 "//mojo/edk/system:system", |
| 108 "//testing/gmock", | 108 "//testing/gmock", |
| 109 "//testing/gtest", | 109 "//testing/gtest", |
| 110 "//third_party/WebKit/Source/core", | 110 "//third_party/WebKit/Source/core", |
| 111 "//third_party/WebKit/Source/modules", | 111 "//third_party/WebKit/Source/modules", |
| 112 "//third_party/WebKit/Source/platform:mojo_bindings_blink", |
| 112 "//third_party/WebKit/Source/platform:test_support", | 113 "//third_party/WebKit/Source/platform:test_support", |
| 113 "//third_party/WebKit/Source/wtf", | 114 "//third_party/WebKit/Source/wtf", |
| 114 "//third_party/WebKit/public:mojo_bindings_blink", | |
| 115 "//third_party/libwebp", | 115 "//third_party/libwebp", |
| 116 "//third_party/zlib", | 116 "//third_party/zlib", |
| 117 "//url", | 117 "//url", |
| 118 "//v8", | 118 "//v8", |
| 119 ] | 119 ] |
| 120 | 120 |
| 121 data_deps = [ | 121 data_deps = [ |
| 122 "//content/shell:pak", | 122 "//content/shell:pak", |
| 123 ":webkit_unit_tests_data", | 123 ":webkit_unit_tests_data", |
| 124 ] | 124 ] |
| (...skipping 14 matching lines...) Expand all Loading... |
| 139 | 139 |
| 140 if (is_android) { | 140 if (is_android) { |
| 141 deps += [ | 141 deps += [ |
| 142 "//base:base_java", | 142 "//base:base_java", |
| 143 "//content/public/android:content_java", | 143 "//content/public/android:content_java", |
| 144 "//content/shell/android:content_shell_assets", | 144 "//content/shell/android:content_shell_assets", |
| 145 "//net/android:net_java", | 145 "//net/android:net_java", |
| 146 ] | 146 ] |
| 147 } | 147 } |
| 148 } | 148 } |
| OLD | NEW |