mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-29 00:36:10 +03:00
28 lines
890 B
Plaintext
28 lines
890 B
Plaintext
|
# Copyright 2017 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
import("//build/config/ios/asset_catalog.gni")
|
||
|
|
||
|
imageset("checkbox") {
|
||
|
sources = [
|
||
|
"checkbox.imageset/Contents.json",
|
||
|
"checkbox.imageset/checkbox.png",
|
||
|
"checkbox.imageset/checkbox@2x.png",
|
||
|
"checkbox.imageset/checkbox@2x~ipad.png",
|
||
|
"checkbox.imageset/checkbox@3x.png",
|
||
|
"checkbox.imageset/checkbox~ipad.png",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
imageset("checkbox_checked") {
|
||
|
sources = [
|
||
|
"checkbox_checked.imageset/Contents.json",
|
||
|
"checkbox_checked.imageset/checkbox_checked.png",
|
||
|
"checkbox_checked.imageset/checkbox_checked@2x.png",
|
||
|
"checkbox_checked.imageset/checkbox_checked@2x~ipad.png",
|
||
|
"checkbox_checked.imageset/checkbox_checked@3x.png",
|
||
|
"checkbox_checked.imageset/checkbox_checked~ipad.png",
|
||
|
]
|
||
|
}
|