| 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 26 matching lines...) Expand all Loading... |
| 37 ] | 37 ] |
| 38 } | 38 } |
| 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 | |
| 48 use_new_wrapper_types = false | |
| 49 } | 47 } |
| 50 | 48 |
| 51 static_library("test_support") { | 49 static_library("test_support") { |
| 52 sources = [ | 50 sources = [ |
| 53 "test/app_list_presenter_impl_test_api.cc", | 51 "test/app_list_presenter_impl_test_api.cc", |
| 54 "test/app_list_presenter_impl_test_api.h", | 52 "test/app_list_presenter_impl_test_api.h", |
| 55 | 53 |
| 56 # Temporary dependency to fix compile flake in http://crbug.com/611898. | 54 # Temporary dependency to fix compile flake in http://crbug.com/611898. |
| 57 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. | 55 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. |
| 58 "//ui/accessibility:ax_gen", | 56 "//ui/accessibility:ax_gen", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 89 | 87 |
| 90 # Temporary dependency to fix compile flake in http://crbug.com/611898. | 88 # Temporary dependency to fix compile flake in http://crbug.com/611898. |
| 91 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. | 89 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. |
| 92 "//ui/accessibility:ax_gen", | 90 "//ui/accessibility:ax_gen", |
| 93 ] | 91 ] |
| 94 | 92 |
| 95 data_deps = [ | 93 data_deps = [ |
| 96 "//ui/resources:ui_test_pak_data", | 94 "//ui/resources:ui_test_pak_data", |
| 97 ] | 95 ] |
| 98 } | 96 } |
| OLD | NEW |