blob: e49d18c331060f20cda2a8cf101154ed8985de3d [file] [log] [blame]
drogerf8479942014-11-21 17:47:531# 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
5{
6 'targets': [
7 {
8 # GN version: //components/web_resource
9 'target_name': 'web_resource',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 '../net/net.gyp:net',
17 ],
18 'sources': [
19 'web_resource/eula_accepted_notifier.cc',
20 'web_resource/eula_accepted_notifier.h',
21 'web_resource/resource_request_allowed_notifier.cc',
22 'web_resource/resource_request_allowed_notifier.h',
23 'web_resource/web_resource_pref_names.cc',
24 'web_resource/web_resource_pref_names.h',
25 ],
26 },
27 {
28 # GN version: //components/web_resources:test_support
29 'target_name': 'web_resource_test_support',
30 'type': 'static_library',
31 'include_dirs': [
32 '..',
33 ],
34 'dependencies': [
35 'web_resource',
36 ],
37 'sources': [
38 'web_resource/resource_request_allowed_notifier_test_util.cc',
39 'web_resource/resource_request_allowed_notifier_test_util.h',
40 ],
41 },
42 ],
43}