summaryrefslogtreecommitdiff
path: root/chromium/components/nacl/renderer/plugin/BUILD.gn
blob: d9957ccb682bd8e2be0bf73277342dd54df6ca03 (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
# Copyright (c) 2015 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.

static_library("nacl_trusted_plugin") {
  sources = [
    "module_ppapi.cc",
    "module_ppapi.h",
    "nacl_subprocess.cc",
    "nacl_subprocess.h",
    "plugin.cc",
    "plugin.h",
    "plugin_error.h",
    "pnacl_coordinator.cc",
    "pnacl_coordinator.h",
    "pnacl_resources.cc",
    "pnacl_resources.h",
    "pnacl_translate_thread.cc",
    "pnacl_translate_thread.h",
    "ppapi_entrypoints.cc",
    "ppapi_entrypoints.h",
    "service_runtime.cc",
    "service_runtime.h",
  ]

  deps = [
    "//base",
    "//components/nacl/common:nacl_error_code",
    "//content/public/common",
    "//media:shared_memory_support",
    "//ppapi/c",
    "//ppapi/cpp:objects",
    "//ppapi/cpp/private:internal_module",
    "//ppapi/proxy:ipc",
  ]
}