BUILD.gn 1.23 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
# Copyright 2018 the V8 project 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("../../gni/v8.gni")

group("v8_run_gcmole") {
  testonly = true

  data = [
11
    "GCMOLE.gn",
12
    "gcmole.py",
13
    "gcmole-test.cc",
14 15
    "gcmole-tools/",
    "run-gcmole.py",
16
    "suspects.whitelist",
17
    "ignored_files",
18
    "test-expectations.txt",
19 20

    # The following contains all relevant source and build files.
21
    "../debug_helper/debug-helper.h",
22 23 24 25 26
    "../../BUILD.gn",
    "../../base/",
    "../../include/",
    "../../src/",
    "../../test/cctest/",
27
    "../../test/common/",
28 29 30
    "../../testing/gtest/include/gtest/gtest_prod.h",
    "../../third_party/googletest/src/googletest/include/gtest/gtest_prod.h",
    "../../third_party/icu/source/",
31 32
    "../../third_party/wasm-api/wasm.h",
    "../../third_party/wasm-api/wasm.hh",
33
    "../../third_party/zlib/",
34
    "../../third_party/inspector_protocol/",
35
    "$target_gen_dir/../../",
36
    "$target_gen_dir/../../torque-generated/",
37 38
  ]

39
  deps = [ "../../:run_torque" ]
40 41 42 43 44 45 46

  if (v8_gcmole) {
    # This assumes gcmole tools have been fetched by a hook
    # into v8/tools/gcmole/gcmole_tools.
    data += [ "gcmole-tools/" ]
  }
}