OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN Version: //components/precache/content | 8 # GN Version: //components/precache/content |
9 'target_name': 'precache_content', | 9 'target_name': 'precache_content', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'dependencies': [ | 11 'dependencies': [ |
12 'precache_core', | 12 'precache_core', |
13 '../base/base.gyp:base', | 13 '../base/base.gyp:base', |
14 '../content/content.gyp:content_browser', | 14 '../content/content.gyp:content_browser', |
15 '../url/url.gyp:url_lib', | 15 '../url/url.gyp:url_lib', |
16 ], | 16 ], |
17 'include_dirs': [ | 17 'include_dirs': [ |
18 '..', | 18 '..', |
19 ], | 19 ], |
20 'sources': [ | 20 'sources': [ |
21 # Note: sources list duplicated in GN build. | 21 # Note: sources list duplicated in GN build. |
22 'precache/content/precache_manager.cc', | 22 'precache/content/precache_manager.cc', |
23 'precache/content/precache_manager.h', | 23 'precache/content/precache_manager.h', |
24 'precache/content/precache_manager_factory.cc', | |
25 'precache/content/precache_manager_factory.h', | |
26 ], | 24 ], |
27 }, | 25 }, |
28 { | 26 { |
29 # GN version: //components/precache/core | 27 # GN version: //components/precache/core |
30 'target_name': 'precache_core', | 28 'target_name': 'precache_core', |
31 'type': 'static_library', | 29 'type': 'static_library', |
32 'dependencies': [ | 30 'dependencies': [ |
33 'precache_core_proto', | 31 'precache_core_proto', |
34 '../base/base.gyp:base', | 32 '../base/base.gyp:base', |
35 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 33 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 '../base/base.gyp:base_java_test_support', | 88 '../base/base.gyp:base_java_test_support', |
91 ], | 89 ], |
92 'variables': { | 90 'variables': { |
93 'java_in_dir': 'precache/android/javatests', | 91 'java_in_dir': 'precache/android/javatests', |
94 }, | 92 }, |
95 'includes': [ '../build/java.gypi' ], | 93 'includes': [ '../build/java.gypi' ], |
96 }], | 94 }], |
97 }], | 95 }], |
98 ], | 96 ], |
99 } | 97 } |
OLD | NEW |