Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: remoting/client/ios/app/resources/BUILD.gn

Issue 2871993003: Moving the iOS directory to be remoting top level. (Closed)
Patch Set: //remoting/ios was the old landing target for the internal iOS application. Fix. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/config/chrome_build.gni")
6 import("//build/config/ios/rules.gni")
7 import("//remoting/build/config/remoting_build.gni")
8
9 bundle_data("assets") {
10 sources = [
11 "Assets.xcassets/ic_desktop.imageset/Contents.json",
12 "Assets.xcassets/ic_desktop.imageset/ic_desktop.png",
13 "Assets.xcassets/ic_desktop.imageset/ic_desktop@2x.png",
14 "Assets.xcassets/ic_desktop.imageset/ic_desktop@3x.png",
15 "Assets.xcassets/ic_desktop_windows.imageset/Contents.json",
16 "Assets.xcassets/ic_desktop_windows.imageset/ic_desktop_windows.png",
17 "Assets.xcassets/ic_desktop_windows.imageset/ic_desktop_windows@2x.png",
18 "Assets.xcassets/ic_desktop_windows.imageset/ic_desktop_windows@3x.png",
19 "Assets.xcassets/ic_fullscreen.imageset/Contents.json",
20 "Assets.xcassets/ic_fullscreen.imageset/ic_fullscreen.png",
21 "Assets.xcassets/ic_fullscreen.imageset/ic_fullscreen@2x.png",
22 "Assets.xcassets/ic_fullscreen.imageset/ic_fullscreen@3x.png",
23 "Assets.xcassets/ic_fullscreen_exit.imageset/Contents.json",
24 "Assets.xcassets/ic_fullscreen_exit.imageset/ic_fullscreen_exit.png",
25 "Assets.xcassets/ic_fullscreen_exit.imageset/ic_fullscreen_exit@2x.png",
26 "Assets.xcassets/ic_fullscreen_exit.imageset/ic_fullscreen_exit@3x.png",
27 "Assets.xcassets/ic_mouse.imageset/Contents.json",
28 "Assets.xcassets/ic_mouse.imageset/ic_mouse.png",
29 "Assets.xcassets/ic_mouse.imageset/ic_mouse@2x.png",
30 "Assets.xcassets/ic_mouse.imageset/ic_mouse@3x.png",
31 "Assets.xcassets/ic_touch_app.imageset/Contents.json",
32 "Assets.xcassets/ic_touch_app.imageset/ic_touch_app.png",
33 "Assets.xcassets/ic_touch_app.imageset/ic_touch_app_2x.png",
34 "Assets.xcassets/ic_touch_app.imageset/ic_touch_app_3x.png",
35 ]
36 outputs = [
37 "{{bundle_resources_dir}}/{{source_file_part}}",
38 ]
39 }
40
41 bundle_data("launchscreen_assets") {
42 sources = [
43 "launchscreen_images.xcassets/Contents.json",
44 "launchscreen_images.xcassets/launchscreen_app_logo.imageset/Contents.json",
45 "launchscreen_images.xcassets/launchscreen_app_logo.imageset/launchscreen_ap p_logo.png",
46 "launchscreen_images.xcassets/launchscreen_app_logo.imageset/launchscreen_ap p_logo@2x.png",
47 "launchscreen_images.xcassets/launchscreen_app_logo.imageset/launchscreen_ap p_logo@3x.png",
48 "launchscreen_images.xcassets/launchscreen_brand_name.imageset/Contents.json ",
49 "launchscreen_images.xcassets/launchscreen_brand_name.imageset/launchscreen_ brand_name.png",
50 "launchscreen_images.xcassets/launchscreen_brand_name.imageset/launchscreen_ brand_name@2x.png",
51 "launchscreen_images.xcassets/launchscreen_brand_name.imageset/launchscreen_ brand_name@3x.png",
52 ]
53 outputs = [
54 "{{bundle_resources_dir}}/{{source_file_part}}",
55 ]
56 }
57
58 bundle_data("remoting_icons") {
59 sources = [
60 "chromium/Icon-120.png",
61 "chromium/Icon-152.png",
62 "chromium/Icon-167.png",
63 "chromium/Icon-180.png",
64 "chromium/Icon-29.png",
65 "chromium/Icon-40.png",
66 "chromium/Icon-58.png",
67 "chromium/Icon-76.png",
68 "chromium/Icon-80.png",
69 "chromium/Icon-87.png",
70 ]
71 outputs = [
72 "{{bundle_resources_dir}}/{{source_file_part}}",
73 ]
74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698