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

Side by Side Diff: components/chrome_apps/BUILD.gn

Issue 1464873002: Run gn --format over all .gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 grit("resources") { 7 grit("resources") {
8 source = "chrome_apps_resources.grd" 8 source = "chrome_apps_resources.grd"
9 outputs = [ 9 outputs = [
10 "grit/chrome_apps_resources.h", 10 "grit/chrome_apps_resources.h",
11 "grit/chrome_apps_resources_map.cc", 11 "grit/chrome_apps_resources_map.cc",
12 "grit/chrome_apps_resources_map.h", 12 "grit/chrome_apps_resources_map.h",
13 "chrome_apps_resources.pak", 13 "chrome_apps_resources.pak",
14 "chrome_apps_resources.rc", 14 "chrome_apps_resources.rc",
15 ] 15 ]
16 } 16 }
17 17
18 component("chrome_apps") { 18 component("chrome_apps") {
19 sources = [ 19 sources = [
20 "chrome_apps_export.h", 20 "chrome_apps_export.h",
21 "chrome_apps_resource_util.cc", 21 "chrome_apps_resource_util.cc",
22 "chrome_apps_resource_util.h", 22 "chrome_apps_resource_util.h",
23 ] 23 ]
24 deps = [ 24 deps = [
25 ":resources",
25 "//base", 26 "//base",
26 ":resources",
27 ] 27 ]
28 defines = [ "CHROME_APPS_IMPLEMENTATION" ] 28 defines = [ "CHROME_APPS_IMPLEMENTATION" ]
29 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698