blob: 87450f3ec300afaaee69f4f8175abd708e5d7a96 [file] [log] [blame]
Brett Wilson642752142014-08-26 19:05:211# Copyright 2014 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
tmoniuszko151f782c2015-12-02 11:34:595import("//build/config/features.gni")
6
brettw2b2364b2015-05-01 22:36:237source_set("path_parser") {
Brett Wilson642752142014-08-26 19:05:218 sources = [
9 "policy_path_parser.h",
10 "policy_path_parser_linux.cc",
11 "policy_path_parser_mac.mm",
12 "policy_path_parser_win.cc",
13 ]
14
15 deps = [
16 "//base",
17 "//chrome/common:constants",
brettw083632b2016-08-25 20:24:4618 "//components/policy:generated",
Brett Wilson642752142014-08-26 19:05:2119 ]
jam66e4b2b2016-04-01 15:09:0920
21 if (is_win) {
22 libs = [ "wtsapi32.lib" ]
23 }
Brett Wilson642752142014-08-26 19:05:2124}