aboutsummaryrefslogtreecommitdiff
path: root/build/BUILD.gn
blob: 3a3fae1753e4e8359cb4a93232e91ae5077f2ea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright 2018 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.

import("//build_overrides/build.gni")

config("default_include_dirs") {
  include_dirs = [ "//" ]
}

# Embedders like Chromium skip all of our configs, which can break
# include resolution, among other things
config("allow_build_from_embedder") {
  if (build_with_chromium) {
    include_dirs = [ "//third_party/openscreen/src" ]
  }
}