| OLD | NEW |
| 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) |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 # be generated before code in this target can start building. | 77 # be generated before code in this target can start building. |
| 78 "//components/resources", | 78 "//components/resources", |
| 79 "//components/strings", | 79 "//components/strings", |
| 80 "//components/variations", | 80 "//components/variations", |
| 81 "//content/public/browser", | 81 "//content/public/browser", |
| 82 "//content/public/common", | 82 "//content/public/common", |
| 83 "//crypto", | 83 "//crypto", |
| 84 "//dbus", | 84 "//dbus", |
| 85 "//device/bluetooth", | 85 "//device/bluetooth", |
| 86 "//device/hid", | 86 "//device/hid", |
| 87 "//extensions/browser/kiosk", |
| 87 "//mash/public/interfaces", | 88 "//mash/public/interfaces", |
| 88 "//media", | 89 "//media", |
| 89 "//media/mojo/interfaces", | 90 "//media/mojo/interfaces", |
| 90 "//mojo/common", | 91 "//mojo/common", |
| 91 "//net", | 92 "//net", |
| 92 "//ppapi/proxy:ipc", # For PpapiMsg_LoadPlugin | 93 "//ppapi/proxy:ipc", # For PpapiMsg_LoadPlugin |
| 93 "//services/shell/public/cpp", | 94 "//services/shell/public/cpp", |
| 94 | 95 |
| 95 # TODO: care about enable_basic_printing and enable_print_preview. | 96 # TODO: care about enable_basic_printing and enable_print_preview. |
| 96 "//components/sync", | 97 "//components/sync", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "accessibility/magnification_manager.cc", | 158 "accessibility/magnification_manager.cc", |
| 158 "accessibility/magnification_manager.h", | 159 "accessibility/magnification_manager.h", |
| 159 "accessibility/spoken_feedback_event_rewriter.cc", | 160 "accessibility/spoken_feedback_event_rewriter.cc", |
| 160 "accessibility/spoken_feedback_event_rewriter.h", | 161 "accessibility/spoken_feedback_event_rewriter.h", |
| 161 "app_mode/app_launch_utils.cc", | 162 "app_mode/app_launch_utils.cc", |
| 162 "app_mode/app_launch_utils.h", | 163 "app_mode/app_launch_utils.h", |
| 163 "app_mode/app_session.cc", | 164 "app_mode/app_session.cc", |
| 164 "app_mode/app_session.h", | 165 "app_mode/app_session.h", |
| 165 "app_mode/certificate_manager_dialog.cc", | 166 "app_mode/certificate_manager_dialog.cc", |
| 166 "app_mode/certificate_manager_dialog.h", | 167 "app_mode/certificate_manager_dialog.h", |
| 168 "app_mode/chrome_kiosk_delegate.cc", |
| 169 "app_mode/chrome_kiosk_delegate.h", |
| 167 "app_mode/kiosk_app_data.cc", | 170 "app_mode/kiosk_app_data.cc", |
| 168 "app_mode/kiosk_app_data.h", | 171 "app_mode/kiosk_app_data.h", |
| 169 "app_mode/kiosk_app_data_delegate.h", | 172 "app_mode/kiosk_app_data_delegate.h", |
| 170 "app_mode/kiosk_app_external_loader.cc", | 173 "app_mode/kiosk_app_external_loader.cc", |
| 171 "app_mode/kiosk_app_external_loader.h", | 174 "app_mode/kiosk_app_external_loader.h", |
| 172 "app_mode/kiosk_app_launch_error.cc", | 175 "app_mode/kiosk_app_launch_error.cc", |
| 173 "app_mode/kiosk_app_launch_error.h", | 176 "app_mode/kiosk_app_launch_error.h", |
| 174 "app_mode/kiosk_app_manager.cc", | 177 "app_mode/kiosk_app_manager.cc", |
| 175 "app_mode/kiosk_app_manager.h", | 178 "app_mode/kiosk_app_manager.h", |
| 176 "app_mode/kiosk_app_manager_observer.h", | 179 "app_mode/kiosk_app_manager_observer.h", |
| (...skipping 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1605 "policy/proto/chrome_device_policy.proto", | 1608 "policy/proto/chrome_device_policy.proto", |
| 1606 "policy/proto/install_attributes.proto", | 1609 "policy/proto/install_attributes.proto", |
| 1607 ] | 1610 ] |
| 1608 } | 1611 } |
| 1609 | 1612 |
| 1610 proto_library("attestation_proto") { | 1613 proto_library("attestation_proto") { |
| 1611 sources = [ | 1614 sources = [ |
| 1612 "attestation/attestation_key_payload.proto", | 1615 "attestation/attestation_key_payload.proto", |
| 1613 ] | 1616 ] |
| 1614 } | 1617 } |
| OLD | NEW |