| 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/core | 8 # GN version: //components/precache/core |
| 9 'target_name': 'precache_core', | 9 'target_name': 'precache_core', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 ['OS!="ios"', { | 57 ['OS!="ios"', { |
| 58 'targets': [ | 58 'targets': [ |
| 59 { | 59 { |
| 60 # GN Version: //components/precache/content | 60 # GN Version: //components/precache/content |
| 61 'target_name': 'precache_content', | 61 'target_name': 'precache_content', |
| 62 'type': 'static_library', | 62 'type': 'static_library', |
| 63 'dependencies': [ | 63 'dependencies': [ |
| 64 'precache_core', | 64 'precache_core', |
| 65 'precache_core_proto', | 65 'precache_core_proto', |
| 66 '../base/base.gyp:base', | 66 '../base/base.gyp:base', |
| 67 '../components/components.gyp:sync_driver', | 67 '../components/sync.gyp:sync', |
| 68 '../content/content.gyp:content_browser', | 68 '../content/content.gyp:content_browser', |
| 69 '../url/url.gyp:url_lib', | 69 '../url/url.gyp:url_lib', |
| 70 ], | 70 ], |
| 71 'include_dirs': [ | 71 'include_dirs': [ |
| 72 '..', | 72 '..', |
| 73 ], | 73 ], |
| 74 'sources': [ | 74 'sources': [ |
| 75 # Note: sources list duplicated in GN build. | 75 # Note: sources list duplicated in GN build. |
| 76 'precache/content/precache_manager.cc', | 76 'precache/content/precache_manager.cc', |
| 77 'precache/content/precache_manager.h', | 77 'precache/content/precache_manager.h', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 99 '../base/base.gyp:base_java_test_support', | 99 '../base/base.gyp:base_java_test_support', |
| 100 ], | 100 ], |
| 101 'variables': { | 101 'variables': { |
| 102 'java_in_dir': 'precache/android/javatests', | 102 'java_in_dir': 'precache/android/javatests', |
| 103 }, | 103 }, |
| 104 'includes': [ '../build/java.gypi' ], | 104 'includes': [ '../build/java.gypi' ], |
| 105 }], | 105 }], |
| 106 }], | 106 }], |
| 107 ], | 107 ], |
| 108 } | 108 } |
| OLD | NEW |