| 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 import("//ui/base/ui_features.gni") |
| 7 | 8 |
| 8 assert(enable_hidpi) | 9 assert(enable_hidpi) |
| 9 | 10 |
| 10 grit("resources") { | 11 grit("resources") { |
| 11 source = "ash_resources.grd" | 12 source = "ash_resources.grd" |
| 12 outputs = [ | 13 outputs = [ |
| 13 "grit/ash_resources.h", | 14 "grit/ash_resources.h", |
| 14 "ash_resources_100_percent.pak", | 15 "ash_resources_100_percent.pak", |
| 15 "ash_resources_200_percent.pak", | 16 "ash_resources_200_percent.pak", |
| 16 ] | 17 ] |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 } | 63 } |
| 63 } | 64 } |
| 64 | 65 |
| 65 ash_test_resources("100_percent") { | 66 ash_test_resources("100_percent") { |
| 66 percent = "100" | 67 percent = "100" |
| 67 } | 68 } |
| 68 | 69 |
| 69 ash_test_resources("200_percent") { | 70 ash_test_resources("200_percent") { |
| 70 percent = "200" | 71 percent = "200" |
| 71 } | 72 } |
| OLD | NEW |