| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "//components/strings", | 73 "//components/strings", |
| 74 "//components/variations", | 74 "//components/variations", |
| 75 "//content/public/browser", | 75 "//content/public/browser", |
| 76 "//content/public/common", | 76 "//content/public/common", |
| 77 "//crypto", | 77 "//crypto", |
| 78 "//dbus", | 78 "//dbus", |
| 79 "//device/bluetooth", | 79 "//device/bluetooth", |
| 80 "//device/hid", | 80 "//device/hid", |
| 81 "//media", | 81 "//media", |
| 82 "//net", | 82 "//net", |
| 83 "//ui/oobe:oobe_ui", |
| 83 "//ppapi/proxy:ipc", # For PpapiMsg_LoadPlugin | 84 "//ppapi/proxy:ipc", # For PpapiMsg_LoadPlugin |
| 84 | 85 |
| 85 # TODO: care about enable_basic_printing and enable_print_preview. | 86 # TODO: care about enable_basic_printing and enable_print_preview. |
| 86 "//printing", | 87 "//printing", |
| 87 "//skia", | 88 "//skia", |
| 88 "//storage/browser", | 89 "//storage/browser", |
| 89 "//storage/common", | 90 "//storage/common", |
| 90 "//sync", | 91 "//sync", |
| 91 "//third_party/adobe/flash:flapper_version_h", | 92 "//third_party/adobe/flash:flapper_version_h", |
| 92 "//third_party/cacheinvalidation", | 93 "//third_party/cacheinvalidation", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 "policy/proto/install_attributes.proto", | 175 "policy/proto/install_attributes.proto", |
| 175 ] | 176 ] |
| 176 } | 177 } |
| 177 | 178 |
| 178 proto_library("attestation_proto") { | 179 proto_library("attestation_proto") { |
| 179 sources = [ | 180 sources = [ |
| 180 "attestation/attestation_key_payload.proto", | 181 "attestation/attestation_key_payload.proto", |
| 181 "attestation/attestation_signed_data.proto", | 182 "attestation/attestation_signed_data.proto", |
| 182 ] | 183 ] |
| 183 } | 184 } |
| OLD | NEW |