Brett Wilson | 64275214 | 2014-08-26 19:05:21 | [diff] [blame] | 1 | # 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 | |
tmoniuszko | 151f782c | 2015-12-02 11:34:59 | [diff] [blame] | 5 | import("//build/config/features.gni") |
| 6 | |
brettw | 2b2364b | 2015-05-01 22:36:23 | [diff] [blame] | 7 | source_set("path_parser") { |
Brett Wilson | 64275214 | 2014-08-26 19:05:21 | [diff] [blame] | 8 | 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", |
brettw | 083632b | 2016-08-25 20:24:46 | [diff] [blame] | 18 | "//components/policy:generated", |
Brett Wilson | 64275214 | 2014-08-26 19:05:21 | [diff] [blame] | 19 | ] |
jam | 66e4b2b | 2016-04-01 15:09:09 | [diff] [blame] | 20 | |
| 21 | if (is_win) { |
| 22 | libs = [ "wtsapi32.lib" ] |
| 23 | } |
Brett Wilson | 64275214 | 2014-08-26 19:05:21 | [diff] [blame] | 24 | } |