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("//chrome/chrome_tests.gni") | 7 import("//chrome/chrome_tests.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
10 | 10 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 "//third_party/libjingle", | 109 "//third_party/libjingle", |
110 "//third_party/libusb", | 110 "//third_party/libusb", |
111 "//third_party/protobuf:protobuf_lite", | 111 "//third_party/protobuf:protobuf_lite", |
112 "//third_party/protobuf:protoc($host_toolchain)", | 112 "//third_party/protobuf:protoc($host_toolchain)", |
113 "//third_party/re2", | 113 "//third_party/re2", |
114 "//third_party/zlib", | 114 "//third_party/zlib", |
115 "//ui/app_list", | 115 "//ui/app_list", |
116 "//ui/app_list/presenter:mojom", | 116 "//ui/app_list/presenter:mojom", |
117 "//ui/aura", | 117 "//ui/aura", |
118 "//ui/base", | 118 "//ui/base", |
119 "//ui/chromeos:ui_chromeos", | 119 "//ui/chromeos", |
120 "//ui/compositor", | 120 "//ui/compositor", |
121 "//ui/display", | 121 "//ui/display", |
122 "//ui/events:dom_keycode_converter", | 122 "//ui/events:dom_keycode_converter", |
123 "//ui/events/devices", | 123 "//ui/events/devices", |
124 "//ui/events/platform", | 124 "//ui/events/platform", |
125 "//ui/file_manager", | 125 "//ui/file_manager", |
126 "//ui/keyboard:mojom", | 126 "//ui/keyboard:mojom", |
127 "//ui/message_center", | 127 "//ui/message_center", |
128 "//ui/surface", | 128 "//ui/surface", |
129 "//ui/views", | 129 "//ui/views", |
130 "//ui/views/controls/webview", | 130 "//ui/views/controls/webview", |
131 "//ui/web_dialogs", | 131 "//ui/web_dialogs", |
132 "//url", | 132 "//url", |
133 "//v8", | 133 "//v8", |
134 ] | 134 ] |
135 | 135 |
| 136 allow_circular_includes_from = [ "//chrome/browser/extensions" ] |
| 137 |
136 sources = rebase_path(gypi_values.browser_chromeos_sources, ".", "//chrome") + | 138 sources = rebase_path(gypi_values.browser_chromeos_sources, ".", "//chrome") + |
137 rebase_path(gypi_values.browser_chromeos_extension_sources, | 139 rebase_path(gypi_values.browser_chromeos_extension_sources, |
138 ".", | 140 ".", |
139 "//chrome") | 141 "//chrome") |
140 sources += [ | 142 sources += [ |
141 "chrome_interface_factory.cc", | 143 "chrome_interface_factory.cc", |
142 "chrome_interface_factory.h", | 144 "chrome_interface_factory.h", |
143 ] | 145 ] |
144 if (use_x11) { | 146 if (use_x11) { |
145 configs += [ "//build/config/linux:x11" ] | 147 configs += [ "//build/config/linux:x11" ] |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 "policy/proto/install_attributes.proto", | 220 "policy/proto/install_attributes.proto", |
219 ] | 221 ] |
220 } | 222 } |
221 | 223 |
222 proto_library("attestation_proto") { | 224 proto_library("attestation_proto") { |
223 sources = [ | 225 sources = [ |
224 "attestation/attestation_key_payload.proto", | 226 "attestation/attestation_key_payload.proto", |
225 "attestation/attestation_signed_data.proto", | 227 "attestation/attestation_signed_data.proto", |
226 ] | 228 ] |
227 } | 229 } |
OLD | NEW |