• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2019 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
5include_rules = [
6    # Platform base code should depend on no outside code/libraries, other than
7    # the standard toolchain libraries (C, STL).
8    '-absl',
9    '-platform',
10    '+platform/base',
11    '-util',
12    '-third_party',
13]
14
15specific_include_rules = {
16  ".*_unittest\.cc": [
17    '+platform/test',
18    '+util',
19    '+third_party',
20  ],
21}
22