| 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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 600 "//ui/gfx/geometry/mojo", | 610 "//ui/gfx/geometry/mojo", |
| 601 "//ui/gfx/mojo", | 611 "//ui/gfx/mojo", |
| 602 "//url/mojo:url_mojom_gurl", | 612 "//url/mojo:url_mojom_gurl", |
| 603 "//url/mojo:url_mojom_origin", | 613 "//url/mojo:url_mojom_origin", |
| 604 ] | 614 ] |
| 605 | 615 |
| 606 export_class_attribute = "CONTENT_EXPORT" | 616 export_class_attribute = "CONTENT_EXPORT" |
| 607 export_define = "CONTENT_IMPLEMENTATION=1" | 617 export_define = "CONTENT_IMPLEMENTATION=1" |
| 608 export_header = "content/common/content_export.h" | 618 export_header = "content/common/content_export.h" |
| 609 } | 619 } |
| OLD | NEW |