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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 "app/switches.h", | 196 "app/switches.h", |
197 ] | 197 ] |
198 } | 198 } |
199 | 199 |
200 source_set("app_ui") { | 200 source_set("app_ui") { |
201 sources = [ | 201 sources = [ |
202 "app/ui/blimp_layout_manager.cc", | 202 "app/ui/blimp_layout_manager.cc", |
203 "app/ui/blimp_layout_manager.h", | 203 "app/ui/blimp_layout_manager.h", |
204 "app/ui/blimp_screen.cc", | 204 "app/ui/blimp_screen.cc", |
205 "app/ui/blimp_screen.h", | 205 "app/ui/blimp_screen.h", |
206 "app/ui/blimp_window_tree_client.cc", | 206 "app/ui/blimp_window_parenting_client.cc", |
207 "app/ui/blimp_window_tree_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/surfaces", | 215 "//cc/surfaces", |
216 "//ui/aura", | 216 "//ui/aura", |
217 "//ui/compositor", | 217 "//ui/compositor", |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
795 "//content/test:test_support", | 795 "//content/test:test_support", |
796 "//testing/gmock", | 796 "//testing/gmock", |
797 "//testing/gtest", | 797 "//testing/gtest", |
798 ] | 798 ] |
799 | 799 |
800 data = [ | 800 data = [ |
801 "//blimp/test/data/", | 801 "//blimp/test/data/", |
802 "$root_out_dir/blimp_engine.pak", | 802 "$root_out_dir/blimp_engine.pak", |
803 ] | 803 ] |
804 } | 804 } |
OLD | NEW |