| 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/common/features.gni") | 7 import("//chrome/common/features.gni") |
| 8 import("//extensions/features/features.gni") | 8 import("//extensions/features/features.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 930 if (is_chromeos) { | 930 if (is_chromeos) { |
| 931 sources += [ | 931 sources += [ |
| 932 "api/certificate_provider/certificate_provider_api.cc", | 932 "api/certificate_provider/certificate_provider_api.cc", |
| 933 "api/certificate_provider/certificate_provider_api.h", | 933 "api/certificate_provider/certificate_provider_api.h", |
| 934 "api/enterprise_device_attributes/enterprise_device_attributes_api.cc", | 934 "api/enterprise_device_attributes/enterprise_device_attributes_api.cc", |
| 935 "api/enterprise_device_attributes/enterprise_device_attributes_api.h", | 935 "api/enterprise_device_attributes/enterprise_device_attributes_api.h", |
| 936 "api/enterprise_platform_keys/enterprise_platform_keys_api.cc", | 936 "api/enterprise_platform_keys/enterprise_platform_keys_api.cc", |
| 937 "api/enterprise_platform_keys/enterprise_platform_keys_api.h", | 937 "api/enterprise_platform_keys/enterprise_platform_keys_api.h", |
| 938 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.cc", | 938 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.cc", |
| 939 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.h", | 939 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.h", |
| 940 "api/file_system/consent_provider.cc", |
| 941 "api/file_system/consent_provider.h", |
| 940 "api/file_system/request_file_system_notification.cc", | 942 "api/file_system/request_file_system_notification.cc", |
| 941 "api/file_system/request_file_system_notification.h", | 943 "api/file_system/request_file_system_notification.h", |
| 942 "api/input_ime/input_ime_api.cc", | 944 "api/input_ime/input_ime_api.cc", |
| 943 "api/input_ime/input_ime_api.h", | 945 "api/input_ime/input_ime_api.h", |
| 944 "api/input_ime/input_ime_api_chromeos.cc", | 946 "api/input_ime/input_ime_api_chromeos.cc", |
| 945 "api/input_ime/input_ime_api_chromeos.h", | 947 "api/input_ime/input_ime_api_chromeos.h", |
| 946 "api/input_ime/input_ime_event_router_base.cc", | 948 "api/input_ime/input_ime_event_router_base.cc", |
| 947 "api/input_ime/input_ime_event_router_base.h", | 949 "api/input_ime/input_ime_event_router_base.h", |
| 948 "api/log_private/filter_handler.cc", | 950 "api/log_private/filter_handler.cc", |
| 949 "api/log_private/filter_handler.h", | 951 "api/log_private/filter_handler.h", |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1172 "api/braille_display_private/brlapi_connection.cc", | 1174 "api/braille_display_private/brlapi_connection.cc", |
| 1173 "api/braille_display_private/brlapi_connection.h", | 1175 "api/braille_display_private/brlapi_connection.h", |
| 1174 "api/braille_display_private/brlapi_keycode_map.cc", | 1176 "api/braille_display_private/brlapi_keycode_map.cc", |
| 1175 "api/braille_display_private/brlapi_keycode_map.h", | 1177 "api/braille_display_private/brlapi_keycode_map.h", |
| 1176 ] | 1178 ] |
| 1177 deps += [ "//build/linux/libbrlapi" ] | 1179 deps += [ "//build/linux/libbrlapi" ] |
| 1178 } else { | 1180 } else { |
| 1179 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] | 1181 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] |
| 1180 } | 1182 } |
| 1181 } | 1183 } |
| OLD | NEW |