summaryrefslogtreecommitdiffstats
path: root/chrome/browser/policy/BUILD.gn
blob: d14578b260bcbc817d65ef9449a5500e0b504eae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2014 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/config/features.gni")

assert(enable_configuration_policy)

source_set("path_parser") {
  sources = [
    "policy_path_parser.h",
    "policy_path_parser_linux.cc",
    "policy_path_parser_mac.mm",
    "policy_path_parser_win.cc",
  ]

  deps = [
    "//base",
    "//chrome/common:constants",
    "//components/policy",
  ]
}