| 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("//testing/test.gni") | 5 import("//testing/test.gni") | 
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") | 
| 7 | 7 | 
| 8 assert(use_aura) | 8 assert(use_aura) | 
| 9 | 9 | 
| 10 component("shower") { | 10 component("shower") { | 
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 42     "//base", | 42     "//base", | 
| 43   ] | 43   ] | 
| 44 } | 44 } | 
| 45 | 45 | 
| 46 test("app_list_shower_unittests") { | 46 test("app_list_shower_unittests") { | 
| 47   sources = [ | 47   sources = [ | 
| 48     "app_list_shower_impl_unittest.cc", | 48     "app_list_shower_impl_unittest.cc", | 
| 49     "test/run_all_unittests.cc", | 49     "test/run_all_unittests.cc", | 
| 50   ] | 50   ] | 
| 51 | 51 | 
| 52   # TODO: Add to data_deps instead once GN has rolled past #339778. |  | 
| 53   data = [ |  | 
| 54     "$root_out_dir/ui_test.pak", |  | 
| 55   ] |  | 
| 56 |  | 
| 57   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 52   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 
| 58 | 53 | 
| 59   deps = [ | 54   deps = [ | 
| 60     ":shower", | 55     ":shower", | 
| 61     ":test_support", | 56     ":test_support", | 
| 62     "//base", | 57     "//base", | 
| 63     "//base/test:test_support", | 58     "//base/test:test_support", | 
| 64     "//testing/gtest", | 59     "//testing/gtest", | 
| 65     "//ui/app_list:test_support", | 60     "//ui/app_list:test_support", | 
| 66     "//ui/aura:aura", | 61     "//ui/aura:aura", | 
| 67     "//ui/aura:test_support", | 62     "//ui/aura:test_support", | 
| 68     "//ui/base", | 63     "//ui/base", | 
| 69     "//ui/gl:test_support", | 64     "//ui/gl:test_support", | 
| 70     "//ui/resources:ui_test_pak", |  | 
| 71     "//ui/wm:wm", | 65     "//ui/wm:wm", | 
| 72   ] | 66   ] | 
|  | 67 | 
|  | 68   data_deps = [ | 
|  | 69     "//ui/resources:ui_test_pak_data", | 
|  | 70   ] | 
| 73 } | 71 } | 
| OLD | NEW | 
|---|