| 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("//rlz/features/features.gni") | 10 import("//rlz/features/features.gni") |
| (...skipping 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 926 if (is_chromeos) { | 926 if (is_chromeos) { |
| 927 sources += [ | 927 sources += [ |
| 928 "api/certificate_provider/certificate_provider_api.cc", | 928 "api/certificate_provider/certificate_provider_api.cc", |
| 929 "api/certificate_provider/certificate_provider_api.h", | 929 "api/certificate_provider/certificate_provider_api.h", |
| 930 "api/enterprise_device_attributes/enterprise_device_attributes_api.cc", | 930 "api/enterprise_device_attributes/enterprise_device_attributes_api.cc", |
| 931 "api/enterprise_device_attributes/enterprise_device_attributes_api.h", | 931 "api/enterprise_device_attributes/enterprise_device_attributes_api.h", |
| 932 "api/enterprise_platform_keys/enterprise_platform_keys_api.cc", | 932 "api/enterprise_platform_keys/enterprise_platform_keys_api.cc", |
| 933 "api/enterprise_platform_keys/enterprise_platform_keys_api.h", | 933 "api/enterprise_platform_keys/enterprise_platform_keys_api.h", |
| 934 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.cc", | 934 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.cc", |
| 935 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.h", | 935 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.h", |
| 936 "api/file_system/request_file_system_dialog_view.cc", |
| 937 "api/file_system/request_file_system_dialog_view.h", |
| 936 "api/file_system/request_file_system_notification.cc", | 938 "api/file_system/request_file_system_notification.cc", |
| 937 "api/file_system/request_file_system_notification.h", | 939 "api/file_system/request_file_system_notification.h", |
| 938 "api/input_ime/input_ime_api.cc", | 940 "api/input_ime/input_ime_api.cc", |
| 939 "api/input_ime/input_ime_api.h", | 941 "api/input_ime/input_ime_api.h", |
| 940 "api/input_ime/input_ime_api_chromeos.cc", | 942 "api/input_ime/input_ime_api_chromeos.cc", |
| 941 "api/input_ime/input_ime_api_chromeos.h", | 943 "api/input_ime/input_ime_api_chromeos.h", |
| 942 "api/input_ime/input_ime_event_router_base.cc", | 944 "api/input_ime/input_ime_event_router_base.cc", |
| 943 "api/input_ime/input_ime_event_router_base.h", | 945 "api/input_ime/input_ime_event_router_base.h", |
| 944 "api/log_private/filter_handler.cc", | 946 "api/log_private/filter_handler.cc", |
| 945 "api/log_private/filter_handler.h", | 947 "api/log_private/filter_handler.h", |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1174 "api/braille_display_private/brlapi_connection.cc", | 1176 "api/braille_display_private/brlapi_connection.cc", |
| 1175 "api/braille_display_private/brlapi_connection.h", | 1177 "api/braille_display_private/brlapi_connection.h", |
| 1176 "api/braille_display_private/brlapi_keycode_map.cc", | 1178 "api/braille_display_private/brlapi_keycode_map.cc", |
| 1177 "api/braille_display_private/brlapi_keycode_map.h", | 1179 "api/braille_display_private/brlapi_keycode_map.h", |
| 1178 ] | 1180 ] |
| 1179 deps += [ "//build/linux/libbrlapi" ] | 1181 deps += [ "//build/linux/libbrlapi" ] |
| 1180 } else { | 1182 } else { |
| 1181 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] | 1183 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] |
| 1182 } | 1184 } |
| 1183 } | 1185 } |
| OLD | NEW |