OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
6 import("//tools/grit/repack.gni") | 6 import("//tools/grit/repack.gni") |
7 | 7 |
8 # GYP version: ui/resources/ui_resources.gyp:ui_resources | 8 # GYP version: ui/resources/ui_resources.gyp:ui_resources |
9 group("resources") { | 9 group("resources") { |
10 public_deps = [ | 10 public_deps = [ |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 ] | 81 ] |
82 public_deps = [ | 82 public_deps = [ |
83 ":repack_ui_test_pak", | 83 ":repack_ui_test_pak", |
84 ] | 84 ] |
85 } | 85 } |
86 } | 86 } |
87 | 87 |
88 # This group exists just for targets that need the data file | 88 # This group exists just for targets that need the data file |
89 # to exist in the build directory so it can be loaded for test purposes. | 89 # to exist in the build directory so it can be loaded for test purposes. |
90 group("ui_test_pak_data") { | 90 group("ui_test_pak_data") { |
91 data_deps = [ ":repack_ui_test_pak" ] | 91 data_deps = [ |
| 92 ":repack_ui_test_pak", |
| 93 ] |
92 } | 94 } |
93 | 95 |
94 # GYP version: ui/resources/ui_resources.gyp:ui_test_pak | 96 # GYP version: ui/resources/ui_resources.gyp:ui_test_pak |
95 repack("repack_ui_test_pak") { | 97 repack("repack_ui_test_pak") { |
96 # Depend on ui_test_pak or ui_test_pak_data instead of this one. | 98 # Depend on ui_test_pak or ui_test_pak_data instead of this one. |
97 visibility = [ | 99 visibility = [ |
98 ":ui_test_pak", | 100 ":ui_test_pak", |
99 ":ui_test_pak_data", | 101 ":ui_test_pak_data", |
100 ] | 102 ] |
101 | 103 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 165 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
164 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 166 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
165 ] | 167 ] |
166 | 168 |
167 output = "$root_out_dir/ui/en.lproj/locale.pak" | 169 output = "$root_out_dir/ui/en.lproj/locale.pak" |
168 | 170 |
169 deps = [ | 171 deps = [ |
170 "//ui/strings", | 172 "//ui/strings", |
171 ] | 173 ] |
172 } | 174 } |
OLD | NEW |