| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "//content/public/utility", | 81 "//content/public/utility", |
| 82 ] | 82 ] |
| 83 } | 83 } |
| 84 | 84 |
| 85 source_set("app_ui") { | 85 source_set("app_ui") { |
| 86 sources = [ | 86 sources = [ |
| 87 "app/ui/blimp_layout_manager.cc", | 87 "app/ui/blimp_layout_manager.cc", |
| 88 "app/ui/blimp_layout_manager.h", | 88 "app/ui/blimp_layout_manager.h", |
| 89 "app/ui/blimp_screen.cc", | 89 "app/ui/blimp_screen.cc", |
| 90 "app/ui/blimp_screen.h", | 90 "app/ui/blimp_screen.h", |
| 91 "app/ui/blimp_ui_context_factory.cc", | |
| 92 "app/ui/blimp_ui_context_factory.h", | |
| 93 "app/ui/blimp_window_tree_host.cc", | 91 "app/ui/blimp_window_tree_host.cc", |
| 94 "app/ui/blimp_window_tree_host.h", | 92 "app/ui/blimp_window_tree_host.h", |
| 95 ] | 93 ] |
| 96 | 94 |
| 97 deps = [ | 95 deps = [ |
| 98 "//blimp/common:blimp_common", | 96 "//blimp/common:blimp_common", |
| 99 "//cc", | 97 "//cc", |
| 100 "//cc/surfaces", | 98 "//cc/surfaces", |
| 101 "//ui/aura", | 99 "//ui/aura", |
| 102 "//ui/compositor", | 100 "//ui/compositor", |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 _rebased_dockerfile, | 262 _rebased_dockerfile, |
| 265 "--startup-script", | 263 "--startup-script", |
| 266 _rebased_startup_script, | 264 _rebased_startup_script, |
| 267 "--manifest", | 265 "--manifest", |
| 268 _rebased_manifest, | 266 _rebased_manifest, |
| 269 "--output", | 267 "--output", |
| 270 rebase_path(_bundle), | 268 rebase_path(_bundle), |
| 271 ] | 269 ] |
| 272 } | 270 } |
| 273 } | 271 } |
| OLD | NEW |