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

Side by Side Diff: chrome/browser/chromeos/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/browser/BUILD.gn ('k') | chrome/browser/ui/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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//third_party/protobuf/proto_library.gni") 8 import("//third_party/protobuf/proto_library.gni")
9 9
10 assert(is_chromeos) 10 assert(is_chromeos)
11 11
12 source_set("chromeos") { 12 source_set("chromeos") {
13 assert(enable_extensions, "ChromeOS Chrome has to be built with extensions") 13 assert(enable_extensions, "ChromeOS Chrome has to be built with extensions")
14 14
15 configs += [ "//build/config/compiler:wexit_time_destructors" ] 15 configs += [ "//build/config/compiler:wexit_time_destructors" ]
16 16
17 public_deps = [ 17 public_deps = [
18 ":device_policy_proto",
18 "//ash/common/strings", 19 "//ash/common/strings",
19 "//ash/resources", 20 "//ash/resources",
20 "//chrome:extra_resources", 21 "//chrome:extra_resources",
21 "//chrome:resources", 22 "//chrome:resources",
22 "//chrome:strings", 23 "//chrome:strings",
23 "//chrome/app/resources:platform_locale_settings", 24 "//chrome/app/resources:platform_locale_settings",
24 "//chrome/app/theme:theme_resources", 25 "//chrome/app/theme:theme_resources",
26 "//chromeos:power_manager_proto",
25 "//components/wallpaper", 27 "//components/wallpaper",
26 "//content/app/resources", 28 "//content/app/resources",
27 "//ui/chromeos/resources", 29 "//ui/chromeos/resources",
28 "//ui/chromeos/strings", 30 "//ui/chromeos/strings",
29 "//ui/resources", 31 "//ui/resources",
30 "//ui/strings", 32 "//ui/strings",
31 ] 33 ]
32 34
33 deps = [ 35 deps = [
34 # TODO(tbarzic): Cleanup this list. 36 # TODO(tbarzic): Cleanup this list.
35 ":attestation_proto", 37 ":attestation_proto",
36 ":device_policy_proto",
37 "//ash", 38 "//ash",
38 "//ash:ash_with_content", 39 "//ash:ash_with_content",
39 "//ash/autoclick/mus/public/interfaces", 40 "//ash/autoclick/mus/public/interfaces",
40 "//ash/public/interfaces", 41 "//ash/public/interfaces",
41 "//ash/public/interfaces", 42 "//ash/public/interfaces",
42 "//build/linux:fontconfig", 43 "//build/linux:fontconfig",
43 "//chrome/browser/devtools", 44 "//chrome/browser/devtools",
44 "//chrome/browser/extensions", 45 "//chrome/browser/extensions",
45 "//chrome/browser/safe_browsing:chunk_proto", 46 "//chrome/browser/safe_browsing:chunk_proto",
46 "//chrome/common", 47 "//chrome/common",
47 "//chrome/common/extensions/api", 48 "//chrome/common/extensions/api",
48 "//chrome/common/extensions/api:api_registration", 49 "//chrome/common/extensions/api:api_registration",
49 "//chrome/common/net", 50 "//chrome/common/net",
50 "//chrome/common/safe_browsing:proto", 51 "//chrome/common/safe_browsing:proto",
51 "//chrome/installer/util:with_no_strings", 52 "//chrome/installer/util:with_no_strings",
52 "//chromeos", 53 "//chromeos",
53 "//chromeos:attestation_proto", 54 "//chromeos:attestation_proto",
54 "//chromeos:cryptohome_proto", 55 "//chromeos:cryptohome_proto",
55 "//chromeos:cryptohome_signkey_proto", 56 "//chromeos:cryptohome_signkey_proto",
56 "//chromeos:power_manager_proto",
57 "//components/arc", 57 "//components/arc",
58 "//components/certificate_reporting:cert_logger_proto", 58 "//components/certificate_reporting:cert_logger_proto",
59 "//components/certificate_reporting:encrypted_cert_logger_proto", 59 "//components/certificate_reporting:encrypted_cert_logger_proto",
60 "//components/drive", 60 "//components/drive",
61 "//components/drive:drive_chromeos", 61 "//components/drive:drive_chromeos",
62 "//components/feedback", 62 "//components/feedback",
63 "//components/flags_ui", 63 "//components/flags_ui",
64 "//components/login", 64 "//components/login",
65 "//components/onc", 65 "//components/onc",
66 "//components/ownership", 66 "//components/ownership",
(...skipping 1536 matching lines...) Expand 10 before | Expand all | Expand 10 after
1603 "policy/proto/chrome_device_policy.proto", 1603 "policy/proto/chrome_device_policy.proto",
1604 "policy/proto/install_attributes.proto", 1604 "policy/proto/install_attributes.proto",
1605 ] 1605 ]
1606 } 1606 }
1607 1607
1608 proto_library("attestation_proto") { 1608 proto_library("attestation_proto") {
1609 sources = [ 1609 sources = [
1610 "attestation/attestation_key_payload.proto", 1610 "attestation/attestation_key_payload.proto",
1611 ] 1611 ]
1612 } 1612 }
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/ui/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698