| 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("//services/service_manager/public/constants.gni") | 9 import("//services/service_manager/public/constants.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 } | 119 } |
| 120 | 120 |
| 121 if (use_ozone) { | 121 if (use_ozone) { |
| 122 deps += [ "//ui/ozone:ozone" ] | 122 deps += [ "//ui/ozone:ozone" ] |
| 123 } | 123 } |
| 124 } | 124 } |
| 125 | 125 |
| 126 repack("resources_strings") { | 126 repack("resources_strings") { |
| 127 sources = [ | 127 sources = [ |
| 128 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 128 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 129 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| 129 ] | 130 ] |
| 130 output = "$root_out_dir/mus_app_resources_strings.pak" | 131 output = "$root_out_dir/mus_app_resources_strings.pak" |
| 131 deps = [ | 132 deps = [ |
| 132 "//ui/strings", | 133 "//ui/strings", |
| 133 ] | 134 ] |
| 134 } | 135 } |
| 135 | 136 |
| 136 repack("resources_100") { | 137 repack("resources_100") { |
| 137 sources = [ | 138 sources = [ |
| 138 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 139 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
| 139 ] | 140 ] |
| 140 output = "$root_out_dir/mus_app_resources_100.pak" | 141 output = "$root_out_dir/mus_app_resources_100.pak" |
| 141 deps = [ | 142 deps = [ |
| 142 "//ui/resources", | 143 "//ui/resources", |
| 143 ] | 144 ] |
| 144 } | 145 } |
| 145 | 146 |
| 146 repack("resources_200") { | 147 repack("resources_200") { |
| 147 sources = [ | 148 sources = [ |
| 148 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 149 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
| 149 ] | 150 ] |
| 150 output = "$root_out_dir/mus_app_resources_200.pak" | 151 output = "$root_out_dir/mus_app_resources_200.pak" |
| 151 deps = [ | 152 deps = [ |
| 152 "//ui/resources", | 153 "//ui/resources", |
| 153 ] | 154 ] |
| 154 } | 155 } |
| OLD | NEW |