summaryrefslogtreecommitdiffstats
path: root/chromium/android_webview/common/BUILD.gn
blob: c4f4c5af2a0c1487cdbb34d19f377f698ea747d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright 2019 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/android/rules.gni")
import("//mojo/public/tools/bindings/mojom.gni")

mojom("common_mojom") {
  sources = [
    "js_java_interaction/interfaces.mojom",
  ]

  public_deps = [
    "//mojo/public/mojom/base",
    "//services/network/public/mojom:mojom",
  ]
}

source_set("common") {
  sources = [
    "android_webview_message_generator.cc",
    "android_webview_message_generator.h",
    "aw_content_client.cc",
    "aw_content_client.h",
    "aw_descriptors.h",
    "aw_features.cc",
    "aw_features.h",
    "aw_hit_test_data.cc",
    "aw_hit_test_data.h",
    "aw_media_drm_bridge_client.cc",
    "aw_media_drm_bridge_client.h",
    "aw_paths.cc",
    "aw_paths.h",
    "aw_resource.cc",
    "aw_resource.h",
    "aw_resource_bundle.cc",
    "aw_resource_bundle.h",
    "aw_switches.cc",
    "aw_switches.h",
    "crash_reporter/aw_crash_reporter_client.cc",
    "crash_reporter/aw_crash_reporter_client.h",
    "crash_reporter/crash_keys.cc",
    "crash_reporter/crash_keys.h",
    "devtools_instrumentation.h",
    "render_view_messages.cc",
    "render_view_messages.h",
    "url_constants.cc",
    "url_constants.h",
  ]
  deps = [
    "//android_webview:common_jni_headers",
    "//base",
    "//components/cdm/common",
    "//components/crash/content/app",
    "//components/crash/core/common:crash_key",
    "//components/gwp_asan/common",
    "//components/services/heap_profiling/public/cpp",
    "//components/version_info",
    "//components/version_info:generate_version_info",
    "//components/version_info/android:channel_getter",
    "//content/public/common",
    "//gpu/config",
    "//ipc",
    "//mojo/public/cpp/bindings",
    "//skia",
    "//ui/base",
    "//ui/gfx/geometry",
    "//ui/gfx/ipc/geometry",
    "//ui/gfx/ipc/skia",
    "//url",
  ]
}