cfc4f44aeb
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4023 Change-Id: I29a26c1716a319156a34a64999756ed7dba1e603 Reviewed-on: https://skia-review.googlesource.com/4023 Reviewed-by: Ben Wagner <bungeman@google.com> Commit-Queue: Mike Klein <mtklein@chromium.org>
47 lines
1.8 KiB
Plaintext
47 lines
1.8 KiB
Plaintext
# Copyright 2016 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# This file is used to shared GN source lists between the standalone Skia
|
|
# and Chrome skia build. All paths produced by this header must be
|
|
# source-absolute since it will be included in different contexts in each
|
|
# checkout.
|
|
_path_to_include = get_path_info("../include", "abspath")
|
|
_path_to_src = get_path_info("../src", "abspath")
|
|
|
|
# GPU.
|
|
_gpu_gypi = exec_script("gypi_to_gn.py",
|
|
[
|
|
rebase_path("../gyp/gpu.gypi"),
|
|
"--replace=<(skia_include_path)=$_path_to_include",
|
|
"--replace=<(skia_src_path)=$_path_to_src",
|
|
],
|
|
"scope",
|
|
[ "../gyp/gpu.gypi" ])
|
|
skia_gpu_sources = _gpu_gypi.skgpu_sources
|
|
skia_null_gpu_sources = _gpu_gypi.skgpu_null_gl_sources
|
|
skia_vk_sources = _gpu_gypi.skgpu_vk_sources
|
|
|
|
# Opts.
|
|
#
|
|
# Unlike the other variables here, this is a "scope" consisting of many
|
|
# sub-lists.
|
|
skia_opts = exec_script("gypi_to_gn.py",
|
|
[
|
|
rebase_path("../gyp/opts.gypi"),
|
|
"--replace=<(skia_include_path)=$_path_to_include",
|
|
"--replace=<(skia_src_path)=$_path_to_src",
|
|
],
|
|
"scope",
|
|
[ "../gyp/opts.gypi" ])
|
|
import("core.gni")
|
|
import("effects.gni")
|
|
import("pdf.gni")
|
|
import("sksl.gni")
|
|
import("utils.gni")
|
|
|
|
# Skia Chromium defines. These flags will be defined in chromium If these
|
|
# become 'permanent', they should be moved into Chrome's skia build file.
|
|
skia_for_chromium_defines = [ "SK_IGNORE_LINEONLY_AA_CONVEX_PATH_OPTS" ]
|