• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3# found in the LICENSE file.
4
5component("system") {
6  output_name = "mojo_public_system"
7
8  sources = [
9    "thunks.cc",
10  ]
11
12  defines = [ "MOJO_SYSTEM_IMPLEMENTATION" ]
13
14  public_deps = [
15    ":headers",
16  ]
17
18  deps = [
19    "//base",
20  ]
21}
22
23source_set("headers") {
24  public = [
25    "buffer.h",
26    "core.h",
27    "data_pipe.h",
28    "functions.h",
29    "invitation.h",
30    "macros.h",
31    "message_pipe.h",
32    "platform_handle.h",
33    "system_export.h",
34    "thunks.h",
35    "trap.h",
36    "types.h",
37  ]
38}
39