| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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: //components/offline_pages:offline_pages | 8 # GN: //components/offline_pages:offline_pages |
| 9 'target_name': 'offline_pages', | 9 'target_name': 'offline_pages', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 '../base/base.gyp:base', | 48 '../base/base.gyp:base', |
| 49 '../net/net.gyp:net', | 49 '../net/net.gyp:net', |
| 50 '../url/url.gyp:url_lib', | 50 '../url/url.gyp:url_lib', |
| 51 ], | 51 ], |
| 52 'sources': [ | 52 'sources': [ |
| 53 'offline_pages/background/offliner.h', | 53 'offline_pages/background/offliner.h', |
| 54 'offline_pages/background/request_coordinator.cc', | 54 'offline_pages/background/request_coordinator.cc', |
| 55 'offline_pages/background/request_coordinator.h', | 55 'offline_pages/background/request_coordinator.h', |
| 56 'offline_pages/background/request_queue.cc', | 56 'offline_pages/background/request_queue.cc', |
| 57 'offline_pages/background/request_queue.h', | 57 'offline_pages/background/request_queue.h', |
| 58 'offline_pages/background/request_queue_in_memory_store.cc', |
| 59 'offline_pages/background/request_queue_in_memory_store.h', |
| 60 'offline_pages/background/request_queue_store.h', |
| 58 'offline_pages/background/save_page_request.cc', | 61 'offline_pages/background/save_page_request.cc', |
| 59 'offline_pages/background/save_page_request.h', | 62 'offline_pages/background/save_page_request.h', |
| 60 'offline_pages/background/scheduler.h', | 63 'offline_pages/background/scheduler.h', |
| 61 ], | 64 ], |
| 62 }, | 65 }, |
| 63 { | 66 { |
| 64 # GN version: //components/offline_pages:test_support | 67 # GN version: //components/offline_pages:test_support |
| 65 'target_name': 'offline_pages_test_support', | 68 'target_name': 'offline_pages_test_support', |
| 66 'type': 'static_library', | 69 'type': 'static_library', |
| 67 'dependencies': [ | 70 'dependencies': [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 'type': 'none', | 102 'type': 'none', |
| 100 'variables': { | 103 'variables': { |
| 101 'source_file': 'offline_pages/offline_page_model.h', | 104 'source_file': 'offline_pages/offline_page_model.h', |
| 102 }, | 105 }, |
| 103 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 106 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
| 104 }, | 107 }, |
| 105 ], | 108 ], |
| 106 }], | 109 }], |
| 107 ], | 110 ], |
| 108 } | 111 } |
| OLD | NEW |