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

Side by Side Diff: chrome/browser/chromeos/BUILD.gn

Issue 2496903003: arc: Add Arc Kiosk app service and ability to launch kiosk apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@policy_comp_parse
Patch Set: nits with comments. Created 4 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 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("//extensions/features/features.gni") 7 import("//extensions/features/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "accessibility/chromevox_panel.cc", 158 "accessibility/chromevox_panel.cc",
159 "accessibility/chromevox_panel.h", 159 "accessibility/chromevox_panel.h",
160 "accessibility/magnification_manager.cc", 160 "accessibility/magnification_manager.cc",
161 "accessibility/magnification_manager.h", 161 "accessibility/magnification_manager.h",
162 "accessibility/spoken_feedback_event_rewriter.cc", 162 "accessibility/spoken_feedback_event_rewriter.cc",
163 "accessibility/spoken_feedback_event_rewriter.h", 163 "accessibility/spoken_feedback_event_rewriter.h",
164 "app_mode/app_launch_utils.cc", 164 "app_mode/app_launch_utils.cc",
165 "app_mode/app_launch_utils.h", 165 "app_mode/app_launch_utils.h",
166 "app_mode/app_session.cc", 166 "app_mode/app_session.cc",
167 "app_mode/app_session.h", 167 "app_mode/app_session.h",
168 "app_mode/arc/arc_kiosk_app_launcher.cc",
169 "app_mode/arc/arc_kiosk_app_launcher.h",
168 "app_mode/arc/arc_kiosk_app_manager.cc", 170 "app_mode/arc/arc_kiosk_app_manager.cc",
169 "app_mode/arc/arc_kiosk_app_manager.h", 171 "app_mode/arc/arc_kiosk_app_manager.h",
172 "app_mode/arc/arc_kiosk_app_service.cc",
173 "app_mode/arc/arc_kiosk_app_service.h",
174 "app_mode/arc/arc_kiosk_app_service_factory.cc",
175 "app_mode/arc/arc_kiosk_app_service_factory.h",
170 "app_mode/certificate_manager_dialog.cc", 176 "app_mode/certificate_manager_dialog.cc",
171 "app_mode/certificate_manager_dialog.h", 177 "app_mode/certificate_manager_dialog.h",
172 "app_mode/kiosk_app_data.cc", 178 "app_mode/kiosk_app_data.cc",
173 "app_mode/kiosk_app_data.h", 179 "app_mode/kiosk_app_data.h",
174 "app_mode/kiosk_app_data_delegate.h", 180 "app_mode/kiosk_app_data_delegate.h",
175 "app_mode/kiosk_app_external_loader.cc", 181 "app_mode/kiosk_app_external_loader.cc",
176 "app_mode/kiosk_app_external_loader.h", 182 "app_mode/kiosk_app_external_loader.h",
177 "app_mode/kiosk_app_launch_error.cc", 183 "app_mode/kiosk_app_launch_error.cc",
178 "app_mode/kiosk_app_launch_error.h", 184 "app_mode/kiosk_app_launch_error.h",
179 "app_mode/kiosk_app_manager.cc", 185 "app_mode/kiosk_app_manager.cc",
(...skipping 1464 matching lines...) Expand 10 before | Expand all | Expand 10 after
1644 "policy/proto/chrome_device_policy.proto", 1650 "policy/proto/chrome_device_policy.proto",
1645 "policy/proto/install_attributes.proto", 1651 "policy/proto/install_attributes.proto",
1646 ] 1652 ]
1647 } 1653 }
1648 1654
1649 proto_library("attestation_proto") { 1655 proto_library("attestation_proto") {
1650 sources = [ 1656 sources = [
1651 "attestation/attestation_key_payload.proto", 1657 "attestation/attestation_key_payload.proto",
1652 ] 1658 ]
1653 } 1659 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698