| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//services/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "//ui/platform_window:platform_impls", | 75 "//ui/platform_window:platform_impls", |
| 76 "//ui/platform_window:platform_window", | 76 "//ui/platform_window:platform_window", |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 if (use_x11) { | 79 if (use_x11) { |
| 80 public_configs = [ "//build/config/linux:x11" ] | 80 public_configs = [ "//build/config/linux:x11" ] |
| 81 public_deps += [ "//ui/events/platform/x11" ] | 81 public_deps += [ "//ui/events/platform/x11" ] |
| 82 } | 82 } |
| 83 | 83 |
| 84 if (use_ozone) { | 84 if (use_ozone) { |
| 85 deps += [ "//ui/ozone:ozone" ] | 85 deps += [ |
| 86 "//ui/ozone:ozone", |
| 87 "//ui/ozone:platform", |
| 88 ] |
| 86 } | 89 } |
| 87 } | 90 } |
| 88 | 91 |
| 89 repack("resources_strings") { | 92 repack("resources_strings") { |
| 90 sources = [ | 93 sources = [ |
| 91 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 94 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 92 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 95 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| 93 ] | 96 ] |
| 94 output = "$root_out_dir/mus_app_resources_strings.pak" | 97 output = "$root_out_dir/mus_app_resources_strings.pak" |
| 95 deps = [ | 98 deps = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 109 | 112 |
| 110 repack("resources_200") { | 113 repack("resources_200") { |
| 111 sources = [ | 114 sources = [ |
| 112 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 115 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
| 113 ] | 116 ] |
| 114 output = "$root_out_dir/mus_app_resources_200.pak" | 117 output = "$root_out_dir/mus_app_resources_200.pak" |
| 115 deps = [ | 118 deps = [ |
| 116 "//ui/resources", | 119 "//ui/resources", |
| 117 ] | 120 ] |
| 118 } | 121 } |
| OLD | NEW |