aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/lua/BUILD.gn
blob: 14ce4175b9bc43f9e99abf11e0f1d91ef33d513d (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
# Copyright 2016 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

declare_args() {
  skia_use_system_lua = is_official_build
}

import("../third_party.gni")

if (skia_use_system_lua) {
  system("lua") {
    libs = [ "lua" ]
  }
} else {
  third_party("lua") {
    public_include_dirs = [ "src" ]

    sources = [
      "src/lapi.c",
      "src/lauxlib.c",
      "src/lbaselib.c",
      "src/lbitlib.c",
      "src/lcode.c",
      "src/lcorolib.c",
      "src/lctype.c",
      "src/ldblib.c",
      "src/ldebug.c",
      "src/ldo.c",
      "src/ldump.c",
      "src/lfunc.c",
      "src/lgc.c",
      "src/linit.c",
      "src/liolib.c",
      "src/llex.c",
      "src/lmathlib.c",
      "src/lmem.c",
      "src/loadlib.c",
      "src/lobject.c",
      "src/lopcodes.c",
      "src/loslib.c",
      "src/lparser.c",
      "src/lstate.c",
      "src/lstring.c",
      "src/lstrlib.c",
      "src/ltable.c",
      "src/ltablib.c",
      "src/ltm.c",
      "src/lundump.c",
      "src/lvm.c",
      "src/lzio.c",
    ]
  }
}