| 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("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
| 10 import("//sandbox/features.gni") | 10 import("//sandbox/features.gni") |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "content_constants_internal.cc", | 72 "content_constants_internal.cc", |
| 73 "content_constants_internal.h", | 73 "content_constants_internal.h", |
| 74 "content_export.h", | 74 "content_export.h", |
| 75 "content_ipc_logging.cc", | 75 "content_ipc_logging.cc", |
| 76 "content_message_generator.cc", | 76 "content_message_generator.cc", |
| 77 "content_message_generator.h", | 77 "content_message_generator.h", |
| 78 "content_param_traits.cc", | 78 "content_param_traits.cc", |
| 79 "content_param_traits.h", | 79 "content_param_traits.h", |
| 80 "content_param_traits_macros.h", | 80 "content_param_traits_macros.h", |
| 81 "content_paths.cc", | 81 "content_paths.cc", |
| 82 "content_security_policy/csp_context.cc", |
| 83 "content_security_policy/csp_context.h", |
| 84 "content_security_policy/csp_directive.cc", |
| 85 "content_security_policy/csp_directive.h", |
| 86 "content_security_policy/csp_policy.cc", |
| 87 "content_security_policy/csp_policy.h", |
| 88 "content_security_policy/csp_source.cc", |
| 89 "content_security_policy/csp_source.h", |
| 90 "content_security_policy/csp_source_list.cc", |
| 91 "content_security_policy/csp_source_list.h", |
| 82 "content_security_policy_header.h", | 92 "content_security_policy_header.h", |
| 83 "content_switches_internal.cc", | 93 "content_switches_internal.cc", |
| 84 "content_switches_internal.h", | 94 "content_switches_internal.h", |
| 85 "cross_site_document_classifier.cc", | 95 "cross_site_document_classifier.cc", |
| 86 "cross_site_document_classifier.h", | 96 "cross_site_document_classifier.h", |
| 87 "cursors/webcursor.cc", | 97 "cursors/webcursor.cc", |
| 88 "cursors/webcursor.h", | 98 "cursors/webcursor.h", |
| 89 "cursors/webcursor_android.cc", | 99 "cursors/webcursor_android.cc", |
| 90 "cursors/webcursor_aura.cc", | 100 "cursors/webcursor_aura.cc", |
| 91 "cursors/webcursor_aurawin.cc", | 101 "cursors/webcursor_aurawin.cc", |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 "//url/mojo:url_mojom_origin", | 629 "//url/mojo:url_mojom_origin", |
| 620 ] | 630 ] |
| 621 | 631 |
| 622 overridden_deps = [ "//ipc:mojom" ] | 632 overridden_deps = [ "//ipc:mojom" ] |
| 623 component_deps = [ "//ipc" ] | 633 component_deps = [ "//ipc" ] |
| 624 | 634 |
| 625 export_class_attribute = "CONTENT_EXPORT" | 635 export_class_attribute = "CONTENT_EXPORT" |
| 626 export_define = "CONTENT_IMPLEMENTATION=1" | 636 export_define = "CONTENT_IMPLEMENTATION=1" |
| 627 export_header = "content/common/content_export.h" | 637 export_header = "content/common/content_export.h" |
| 628 } | 638 } |
| OLD | NEW |