| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 defines = [ "MOJO_SHELL_CLIENT" ] | |
| 137 | |
| 138 sources = rebase_path(gypi_values.browser_chromeos_sources, ".", "//chrome") + | 136 sources = rebase_path(gypi_values.browser_chromeos_sources, ".", "//chrome") + |
| 139 rebase_path(gypi_values.browser_chromeos_extension_sources, | 137 rebase_path(gypi_values.browser_chromeos_extension_sources, |
| 140 ".", | 138 ".", |
| 141 "//chrome") | 139 "//chrome") |
| 142 sources += [ | 140 sources += [ |
| 143 "chrome_interface_factory.cc", | 141 "chrome_interface_factory.cc", |
| 144 "chrome_interface_factory.h", | 142 "chrome_interface_factory.h", |
| 145 ] | 143 ] |
| 146 if (use_x11) { | 144 if (use_x11) { |
| 147 configs += [ "//build/config/linux:x11" ] | 145 configs += [ "//build/config/linux:x11" ] |
| (...skipping 14 matching lines...) Expand all Loading... |
| 162 "events/system_key_event_listener.cc", | 160 "events/system_key_event_listener.cc", |
| 163 "events/system_key_event_listener.h", | 161 "events/system_key_event_listener.h", |
| 164 "events/xinput_hierarchy_changed_event_listener.cc", | 162 "events/xinput_hierarchy_changed_event_listener.cc", |
| 165 "events/xinput_hierarchy_changed_event_listener.h", | 163 "events/xinput_hierarchy_changed_event_listener.h", |
| 166 "system/input_device_settings_impl_x11.cc", | 164 "system/input_device_settings_impl_x11.cc", |
| 167 "system_logs/touch_log_source_x11.cc", | 165 "system_logs/touch_log_source_x11.cc", |
| 168 ] | 166 ] |
| 169 } | 167 } |
| 170 | 168 |
| 171 if (use_cras) { | 169 if (use_cras) { |
| 172 defines += [ "USE_CRAS" ] | 170 defines = [ "USE_CRAS" ] |
| 173 } | 171 } |
| 174 | 172 |
| 175 if (ui_compositor_image_transport) { | 173 if (ui_compositor_image_transport) { |
| 176 deps += [ "//ui/gl" ] | 174 deps += [ "//ui/gl" ] |
| 177 } | 175 } |
| 178 } | 176 } |
| 179 | 177 |
| 180 source_set("unit_tests") { | 178 source_set("unit_tests") { |
| 181 testonly = true | 179 testonly = true |
| 182 | 180 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 "policy/proto/install_attributes.proto", | 218 "policy/proto/install_attributes.proto", |
| 221 ] | 219 ] |
| 222 } | 220 } |
| 223 | 221 |
| 224 proto_library("attestation_proto") { | 222 proto_library("attestation_proto") { |
| 225 sources = [ | 223 sources = [ |
| 226 "attestation/attestation_key_payload.proto", | 224 "attestation/attestation_key_payload.proto", |
| 227 "attestation/attestation_signed_data.proto", | 225 "attestation/attestation_signed_data.proto", |
| 228 ] | 226 ] |
| 229 } | 227 } |
| OLD | NEW |