| 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 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "//components/onc", | 64 "//components/onc", |
| 65 "//components/ownership", | 65 "//components/ownership", |
| 66 "//components/pairing", | 66 "//components/pairing", |
| 67 "//components/policy", | 67 "//components/policy", |
| 68 | 68 |
| 69 # This depends directly on the variations target, rather than just | 69 # This depends directly on the variations target, rather than just |
| 70 # transitively via the common target because the proto sources need to | 70 # transitively via the common target because the proto sources need to |
| 71 # be generated before code in this target can start building. | 71 # be generated before code in this target can start building. |
| 72 "//components/strings", | 72 "//components/strings", |
| 73 "//components/variations", | 73 "//components/variations", |
| 74 "//components/webui_generator", | |
| 75 "//content/public/browser", | 74 "//content/public/browser", |
| 76 "//content/public/common", | 75 "//content/public/common", |
| 77 "//crypto", | 76 "//crypto", |
| 78 "//dbus", | 77 "//dbus", |
| 79 "//device/bluetooth", | 78 "//device/bluetooth", |
| 80 "//device/hid", | 79 "//device/hid", |
| 81 "//media", | 80 "//media", |
| 82 "//media/mojo/interfaces", | 81 "//media/mojo/interfaces", |
| 83 "//net", | 82 "//net", |
| 84 "//ppapi/proxy:ipc", # For PpapiMsg_LoadPlugin | 83 "//ppapi/proxy:ipc", # For PpapiMsg_LoadPlugin |
| (...skipping 21 matching lines...) Expand all Loading... |
| 106 "//ui/aura", | 105 "//ui/aura", |
| 107 "//ui/base", | 106 "//ui/base", |
| 108 "//ui/chromeos:ui_chromeos", | 107 "//ui/chromeos:ui_chromeos", |
| 109 "//ui/compositor", | 108 "//ui/compositor", |
| 110 "//ui/display", | 109 "//ui/display", |
| 111 "//ui/events/devices", | 110 "//ui/events/devices", |
| 112 "//ui/events/platform", | 111 "//ui/events/platform", |
| 113 "//ui/events:dom_keycode_converter", | 112 "//ui/events:dom_keycode_converter", |
| 114 "//ui/file_manager", | 113 "//ui/file_manager", |
| 115 "//ui/message_center", | 114 "//ui/message_center", |
| 116 "//ui/oobe:oobe", | |
| 117 "//ui/oobe:oobe_gen", | |
| 118 "//ui/surface", | 115 "//ui/surface", |
| 119 "//ui/views", | 116 "//ui/views", |
| 120 "//ui/views/controls/webview", | 117 "//ui/views/controls/webview", |
| 121 "//ui/web_dialogs", | 118 "//ui/web_dialogs", |
| 122 "//url", | 119 "//url", |
| 123 "//v8", | 120 "//v8", |
| 124 ":attestation_proto", | 121 ":attestation_proto", |
| 125 ":device_policy_proto", | 122 ":device_policy_proto", |
| 126 ":drive_proto", | 123 ":drive_proto", |
| 127 ] | 124 ] |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "policy/proto/install_attributes.proto", | 172 "policy/proto/install_attributes.proto", |
| 176 ] | 173 ] |
| 177 } | 174 } |
| 178 | 175 |
| 179 proto_library("attestation_proto") { | 176 proto_library("attestation_proto") { |
| 180 sources = [ | 177 sources = [ |
| 181 "attestation/attestation_key_payload.proto", | 178 "attestation/attestation_key_payload.proto", |
| 182 "attestation/attestation_signed_data.proto", | 179 "attestation/attestation_signed_data.proto", |
| 183 ] | 180 ] |
| 184 } | 181 } |
| OLD | NEW |