| 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("features.gni") | 5 import("features.gni") |
| 6 import("//build/buildflag_header.gni") | 6 import("//build/buildflag_header.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 "service_worker/service_worker_utils.cc", | 333 "service_worker/service_worker_utils.cc", |
| 334 "service_worker/service_worker_utils.h", | 334 "service_worker/service_worker_utils.h", |
| 335 "site_isolation_policy.cc", | 335 "site_isolation_policy.cc", |
| 336 "site_isolation_policy.h", | 336 "site_isolation_policy.h", |
| 337 "speech_recognition_messages.h", | 337 "speech_recognition_messages.h", |
| 338 "swapped_out_messages.cc", | 338 "swapped_out_messages.cc", |
| 339 "swapped_out_messages.h", | 339 "swapped_out_messages.h", |
| 340 "text_input_client_messages.h", | 340 "text_input_client_messages.h", |
| 341 "text_input_state.cc", | 341 "text_input_state.cc", |
| 342 "text_input_state.h", | 342 "text_input_state.h", |
| 343 "throttling_url_loader.cc", |
| 344 "throttling_url_loader.h", |
| 343 "unique_name_helper.cc", | 345 "unique_name_helper.cc", |
| 344 "unique_name_helper.h", | 346 "unique_name_helper.h", |
| 345 "url_request_struct_traits.cc", | 347 "url_request_struct_traits.cc", |
| 346 "url_request_struct_traits.h", | 348 "url_request_struct_traits.h", |
| 347 "url_schemes.cc", | 349 "url_schemes.cc", |
| 348 "url_schemes.h", | 350 "url_schemes.h", |
| 349 "user_agent.cc", | 351 "user_agent.cc", |
| 350 "utility_messages.h", | 352 "utility_messages.h", |
| 351 "view_message_enums.h", | 353 "view_message_enums.h", |
| 352 "view_messages.h", | 354 "view_messages.h", |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 "//ui/gfx/mojo", | 651 "//ui/gfx/mojo", |
| 650 "//url/mojo:url_mojom_gurl", | 652 "//url/mojo:url_mojom_gurl", |
| 651 "//url/mojo:url_mojom_origin", | 653 "//url/mojo:url_mojom_origin", |
| 652 ] | 654 ] |
| 653 | 655 |
| 654 component_output_prefix = "content_common_mojo_bindings" | 656 component_output_prefix = "content_common_mojo_bindings" |
| 655 export_class_attribute = "CONTENT_EXPORT" | 657 export_class_attribute = "CONTENT_EXPORT" |
| 656 export_define = "CONTENT_IMPLEMENTATION=1" | 658 export_define = "CONTENT_IMPLEMENTATION=1" |
| 657 export_header = "content/common/content_export.h" | 659 export_header = "content/common/content_export.h" |
| 658 } | 660 } |
| OLD | NEW |