| 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 1508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1605 "policy/proto/chrome_device_policy.proto", | 1606 "policy/proto/chrome_device_policy.proto", |
| 1606 "policy/proto/install_attributes.proto", | 1607 "policy/proto/install_attributes.proto", |
| 1607 ] | 1608 ] |
| 1608 } | 1609 } |
| 1609 | 1610 |
| 1610 proto_library("attestation_proto") { | 1611 proto_library("attestation_proto") { |
| 1611 sources = [ | 1612 sources = [ |
| 1612 "attestation/attestation_key_payload.proto", | 1613 "attestation/attestation_key_payload.proto", |
| 1613 ] | 1614 ] |
| 1614 } | 1615 } |
| OLD | NEW |