OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
205 "app/ui/blimp_screen.h", | 205 "app/ui/blimp_screen.h", |
206 "app/ui/blimp_window_parenting_client.cc", | 206 "app/ui/blimp_window_parenting_client.cc", |
207 "app/ui/blimp_window_parenting_client.h", | 207 "app/ui/blimp_window_parenting_client.h", |
208 "app/ui/blimp_window_tree_host.cc", | 208 "app/ui/blimp_window_tree_host.cc", |
209 "app/ui/blimp_window_tree_host.h", | 209 "app/ui/blimp_window_tree_host.h", |
210 ] | 210 ] |
211 | 211 |
212 deps = [ | 212 deps = [ |
213 "//blimp/common", | 213 "//blimp/common", |
214 "//cc", | 214 "//cc", |
215 "//cc/animation", | |
Khushal
2016/11/18 21:20:23
Not needed.
loyso (OOO)
2016/11/21 06:47:54
Done.
| |
215 "//cc/surfaces", | 216 "//cc/surfaces", |
216 "//ui/aura", | 217 "//ui/aura", |
217 "//ui/compositor", | 218 "//ui/compositor", |
218 "//ui/display", | 219 "//ui/display", |
219 "//ui/events", | 220 "//ui/events", |
220 "//ui/gfx", | 221 "//ui/gfx", |
221 "//ui/platform_window", | 222 "//ui/platform_window", |
222 "//ui/platform_window/stub/", | 223 "//ui/platform_window/stub/", |
223 ] | 224 ] |
224 } | 225 } |
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
804 "//content/test:test_support", | 805 "//content/test:test_support", |
805 "//testing/gmock", | 806 "//testing/gmock", |
806 "//testing/gtest", | 807 "//testing/gtest", |
807 ] | 808 ] |
808 | 809 |
809 data = [ | 810 data = [ |
810 "//blimp/test/data/", | 811 "//blimp/test/data/", |
811 "$root_out_dir/blimp_engine.pak", | 812 "$root_out_dir/blimp_engine.pak", |
812 ] | 813 ] |
813 } | 814 } |
OLD | NEW |