| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 visibility = [ "*" ] | 89 visibility = [ "*" ] |
| 90 | 90 |
| 91 deps = [ | 91 deps = [ |
| 92 ":test_support", | 92 ":test_support", |
| 93 ":web", | 93 ":web", |
| 94 "//base", | 94 "//base", |
| 95 "//base:i18n", | 95 "//base:i18n", |
| 96 "//base/test:test_support", | 96 "//base/test:test_support", |
| 97 "//content/test:test_support", | 97 "//content/test:test_support", |
| 98 "//gpu:test_support", | 98 "//gpu:test_support", |
| 99 "//mojo/edk/system:system", |
| 99 "//testing/gmock", | 100 "//testing/gmock", |
| 100 "//testing/gtest", | 101 "//testing/gtest", |
| 101 "//third_party/WebKit/Source/core", | 102 "//third_party/WebKit/Source/core", |
| 102 "//third_party/WebKit/Source/modules", | 103 "//third_party/WebKit/Source/modules", |
| 103 "//third_party/WebKit/Source/platform:test_support", | 104 "//third_party/WebKit/Source/platform:test_support", |
| 104 "//third_party/WebKit/Source/wtf", | 105 "//third_party/WebKit/Source/wtf", |
| 105 "//third_party/WebKit/public:mojo_bindings_blink", | 106 "//third_party/WebKit/public:mojo_bindings_blink", |
| 106 "//third_party/libwebp", | 107 "//third_party/libwebp", |
| 107 "//third_party/zlib", | 108 "//third_party/zlib", |
| 108 "//url", | 109 "//url", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 130 | 131 |
| 131 if (is_android) { | 132 if (is_android) { |
| 132 deps += [ | 133 deps += [ |
| 133 "//base:base_java", | 134 "//base:base_java", |
| 134 "//content/public/android:content_java", | 135 "//content/public/android:content_java", |
| 135 "//content/shell/android:content_shell_assets", | 136 "//content/shell/android:content_shell_assets", |
| 136 "//net/android:net_java", | 137 "//net/android:net_java", |
| 137 ] | 138 ] |
| 138 } | 139 } |
| 139 } | 140 } |
| OLD | NEW |