| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 assert(use_aura) | 9 assert(use_aura) |
| 10 | 10 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 ":presenter", | 91 ":presenter", |
| 92 ":test_support", | 92 ":test_support", |
| 93 "//base", | 93 "//base", |
| 94 "//base/test:test_support", | 94 "//base/test:test_support", |
| 95 "//testing/gtest", | 95 "//testing/gtest", |
| 96 "//ui/app_list:test_support", | 96 "//ui/app_list:test_support", |
| 97 "//ui/aura:aura", | 97 "//ui/aura:aura", |
| 98 "//ui/aura:test_support", | 98 "//ui/aura:test_support", |
| 99 "//ui/base", | 99 "//ui/base", |
| 100 "//ui/gl:test_support", | 100 "//ui/gl:test_support", |
| 101 "//ui/views:test_support", |
| 101 "//ui/wm:wm", | 102 "//ui/wm:wm", |
| 102 | 103 |
| 103 # Temporary dependency to fix compile flake in http://crbug.com/611898. | 104 # Temporary dependency to fix compile flake in http://crbug.com/611898. |
| 104 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. | 105 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. |
| 105 "//ui/accessibility:ax_gen", | 106 "//ui/accessibility:ax_gen", |
| 106 ] | 107 ] |
| 107 | 108 |
| 108 data_deps = [ | 109 data_deps = [ |
| 109 "//ui/resources:ui_test_pak_data", | 110 "//ui/resources:ui_test_pak_data", |
| 110 ] | 111 ] |
| 111 } | 112 } |
| OLD | NEW |