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 API code should depend on no outside code/libraries, other than
7    # the standard toolchain libraries (C, STL) and platform/base.
8    '-absl',
9    '-platform',
10    '+platform/api',
11    '+platform/base',
12    '-util',
13    '-third_party',
14]
15
16specific_include_rules = {
17  ".*_unittest\.cc": [
18    '+platform/test',
19    '+util',
20    '+third_party',
21  ],
22}
23