| 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 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 mojom("mojom") { | 40 mojom("mojom") { |
| 41 sources = [ | 41 sources = [ |
| 42 "app_list_presenter.mojom", | 42 "app_list_presenter.mojom", |
| 43 ] | 43 ] |
| 44 deps = [ | 44 deps = [ |
| 45 "//services/ui/public/interfaces", | 45 "//services/ui/public/interfaces", |
| 46 ] | 46 ] |
| 47 } | 47 } |
| 48 | 48 |
| 49 source_set("test_support") { | 49 static_library("test_support") { |
| 50 sources = [ | 50 sources = [ |
| 51 "test/app_list_presenter_impl_test_api.cc", | 51 "test/app_list_presenter_impl_test_api.cc", |
| 52 "test/app_list_presenter_impl_test_api.h", | 52 "test/app_list_presenter_impl_test_api.h", |
| 53 | 53 |
| 54 # Temporary dependency to fix compile flake in http://crbug.com/611898. | 54 # Temporary dependency to fix compile flake in http://crbug.com/611898. |
| 55 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. | 55 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. |
| 56 "//ui/accessibility:ax_gen", | 56 "//ui/accessibility:ax_gen", |
| 57 ] | 57 ] |
| 58 | 58 |
| 59 public_deps = [ | 59 public_deps = [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 87 | 87 |
| 88 # Temporary dependency to fix compile flake in http://crbug.com/611898. | 88 # Temporary dependency to fix compile flake in http://crbug.com/611898. |
| 89 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. | 89 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. |
| 90 "//ui/accessibility:ax_gen", | 90 "//ui/accessibility:ax_gen", |
| 91 ] | 91 ] |
| 92 | 92 |
| 93 data_deps = [ | 93 data_deps = [ |
| 94 "//ui/resources:ui_test_pak_data", | 94 "//ui/resources:ui_test_pak_data", |
| 95 ] | 95 ] |
| 96 } | 96 } |
| OLD | NEW |