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

Side by Side Diff: chrome/app/BUILD.gn

Issue 2354633002: Add //chrome/browser/ui to "gn check". (Closed)
Patch Set: cast_shell_android and chromeos_ozone Created 4 years, 3 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
« no previous file with comments | « chrome/BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//services/shell/public/service_manifest.gni") 6 import("//services/shell/public/service_manifest.gni")
7 import("//tools/grit/grit_rule.gni") 7 import("//tools/grit/grit_rule.gni")
8 8
9 # This target is for dependency tracking for the command ID header. 9 # This target is for dependency tracking for the command ID header.
10 source_set("command_ids") { 10 source_set("command_ids") {
11 sources = [ 11 sources = [
12 "chrome_command_ids.h", 12 "chrome_command_ids.h",
13 ] 13 ]
14 } 14 }
15 15
16 # On Windows, links chrome_dll.rc. On other platforms, does nothing so you can
17 # unconditionally depend on it.
18 source_set("chrome_dll_resources") {
19 # This source is added unconditionally for include checking on non-Windows
20 # platforms.
21 sources = [
22 "chrome_dll_resource.h",
23 ]
24 if (is_win) {
25 sources += [ "chrome_dll.rc" ]
26 }
27 }
28
16 if (is_android) { 29 if (is_android) {
17 import("//build/config/android/rules.gni") 30 import("//build/config/android/rules.gni")
18 android_generated_java_resources = [ 31 android_generated_java_resources = [
19 "java/res/values-am/generated_resources.xml", 32 "java/res/values-am/generated_resources.xml",
20 "java/res/values-ar/generated_resources.xml", 33 "java/res/values-ar/generated_resources.xml",
21 "java/res/values-bg/generated_resources.xml", 34 "java/res/values-bg/generated_resources.xml",
22 "java/res/values-ca/generated_resources.xml", 35 "java/res/values-ca/generated_resources.xml",
23 "java/res/values-cs/generated_resources.xml", 36 "java/res/values-cs/generated_resources.xml",
24 "java/res/values-da/generated_resources.xml", 37 "java/res/values-da/generated_resources.xml",
25 "java/res/values-de/generated_resources.xml", 38 "java/res/values-de/generated_resources.xml",
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 base_deps = [ "//content/public/app:renderer_manifest" ] 361 base_deps = [ "//content/public/app:renderer_manifest" ]
349 } 362 }
350 363
351 group("mojo_manifests") { 364 group("mojo_manifests") {
352 data_deps = [ 365 data_deps = [
353 ":chrome_manifest", 366 ":chrome_manifest",
354 ":chrome_renderer_manifest", 367 ":chrome_renderer_manifest",
355 ] 368 ]
356 } 369 }
357 } 370 }
OLDNEW
« no previous file with comments | « chrome/BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698