| 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 15 matching lines...) Expand all Loading... |
| 26 source_set("common") { | 26 source_set("common") { |
| 27 # Targets external to content should always link to the public API. | 27 # Targets external to content should always link to the public API. |
| 28 # In addition, targets outside of the content component (shell and tests) | 28 # In addition, targets outside of the content component (shell and tests) |
| 29 # must not link to this because it will duplicate the code in the component | 29 # must not link to this because it will duplicate the code in the component |
| 30 # build. | 30 # build. |
| 31 visibility = [ "//content/*" ] | 31 visibility = [ "//content/*" ] |
| 32 | 32 |
| 33 sources = [ | 33 sources = [ |
| 34 "accessibility_messages.h", | 34 "accessibility_messages.h", |
| 35 "all_messages.h", | 35 "all_messages.h", |
| 36 "android/address_parser.cc", | |
| 37 "android/address_parser.h", | |
| 38 "android/address_parser_internal.cc", | |
| 39 "android/address_parser_internal.h", | |
| 40 "android/common_jni_registrar.cc", | 36 "android/common_jni_registrar.cc", |
| 41 "android/common_jni_registrar.h", | 37 "android/common_jni_registrar.h", |
| 42 "android/gin_java_bridge_errors.cc", | 38 "android/gin_java_bridge_errors.cc", |
| 43 "android/gin_java_bridge_errors.h", | 39 "android/gin_java_bridge_errors.h", |
| 44 "android/gin_java_bridge_value.cc", | 40 "android/gin_java_bridge_value.cc", |
| 45 "android/gin_java_bridge_value.h", | 41 "android/gin_java_bridge_value.h", |
| 46 "android/hash_set.cc", | 42 "android/hash_set.cc", |
| 47 "android/hash_set.h", | 43 "android/hash_set.h", |
| 48 "android/media_metadata_android.cc", | 44 "android/media_metadata_android.cc", |
| 49 "android/media_metadata_android.h", | 45 "android/media_metadata_android.h", |
| (...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 641 "//url/mojo:url_mojom_origin", | 637 "//url/mojo:url_mojom_origin", |
| 642 ] | 638 ] |
| 643 | 639 |
| 644 overridden_deps = [ "//ipc:mojom" ] | 640 overridden_deps = [ "//ipc:mojom" ] |
| 645 component_deps = [ "//ipc" ] | 641 component_deps = [ "//ipc" ] |
| 646 | 642 |
| 647 export_class_attribute = "CONTENT_EXPORT" | 643 export_class_attribute = "CONTENT_EXPORT" |
| 648 export_define = "CONTENT_IMPLEMENTATION=1" | 644 export_define = "CONTENT_IMPLEMENTATION=1" |
| 649 export_header = "content/common/content_export.h" | 645 export_header = "content/common/content_export.h" |
| 650 } | 646 } |
| OLD | NEW |