| 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 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 defines = [ "APP_LIST_PRESENTER_IMPLEMENTATION" ] | 24 defines = [ "APP_LIST_PRESENTER_IMPLEMENTATION" ] |
| 25 | 25 |
| 26 public_deps = [ | 26 public_deps = [ |
| 27 "//base", | 27 "//base", |
| 28 "//ui/app_list", | 28 "//ui/app_list", |
| 29 "//ui/aura", | 29 "//ui/aura", |
| 30 "//ui/compositor", | 30 "//ui/compositor", |
| 31 "//ui/gfx/geometry", | 31 "//ui/gfx/geometry", |
| 32 "//ui/views", | 32 "//ui/views", |
| 33 |
| 34 # Temporary dependency to fix compile flake in http://crbug.com/611898. |
| 35 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. |
| 36 "//ui/accessibility:ax_gen", |
| 33 ] | 37 ] |
| 34 } | 38 } |
| 35 | 39 |
| 36 mojom("mojom") { | 40 mojom("mojom") { |
| 37 sources = [ | 41 sources = [ |
| 38 "app_list_presenter.mojom", | 42 "app_list_presenter.mojom", |
| 39 ] | 43 ] |
| 40 deps = [ | 44 deps = [ |
| 41 "//components/mus/public/interfaces", | 45 "//components/mus/public/interfaces", |
| 42 ] | 46 ] |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "//ui/aura:test_support", | 79 "//ui/aura:test_support", |
| 76 "//ui/base", | 80 "//ui/base", |
| 77 "//ui/gl:test_support", | 81 "//ui/gl:test_support", |
| 78 "//ui/wm:wm", | 82 "//ui/wm:wm", |
| 79 ] | 83 ] |
| 80 | 84 |
| 81 data_deps = [ | 85 data_deps = [ |
| 82 "//ui/resources:ui_test_pak_data", | 86 "//ui/resources:ui_test_pak_data", |
| 83 ] | 87 ] |
| 84 } | 88 } |
| OLD | NEW |