Chromium Code Reviews| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 82 'offline_pages/background/request_queue_in_memory_store.h', | 82 'offline_pages/background/request_queue_in_memory_store.h', |
| 83 'offline_pages/background/request_queue_store.h', | 83 'offline_pages/background/request_queue_store.h', |
| 84 'offline_pages/background/request_queue_store_sql.cc', | 84 'offline_pages/background/request_queue_store_sql.cc', |
| 85 'offline_pages/background/request_queue_store_sql.h', | 85 'offline_pages/background/request_queue_store_sql.h', |
| 86 'offline_pages/background/save_page_request.cc', | 86 'offline_pages/background/save_page_request.cc', |
| 87 'offline_pages/background/save_page_request.h', | 87 'offline_pages/background/save_page_request.h', |
| 88 'offline_pages/background/scheduler.h', | 88 'offline_pages/background/scheduler.h', |
| 89 ], | 89 ], |
| 90 }, | 90 }, |
| 91 { | 91 { |
| 92 # GN: //components/offline_pages/downloads:offline_pages_ui_adapter | |
| 93 'target_name': 'offline_pages_ui_adapter', | |
| 94 'type': 'static_library', | |
| 95 'include_dirs': [ | |
| 96 '..', | |
| 97 '../..', | |
| 98 ], | |
| 99 'dependencies': [ | |
| 100 '../base/base.gyp:base', | |
| 101 ], | |
| 102 'sources': [ | |
| 103 'download_ui_adapter.cc', | |
|
fgorski
2016/07/26 20:10:58
compilation issue caused by lack of path
| |
| 104 'download_ui_adapter.h', | |
| 105 'download_ui_item.cc', | |
| 106 'download_ui_item.h', | |
| 107 ], | |
| 108 }, | |
| 109 { | |
| 92 # GN version: //components/offline_pages:test_support | 110 # GN version: //components/offline_pages:test_support |
| 93 'target_name': 'offline_pages_test_support', | 111 'target_name': 'offline_pages_test_support', |
| 94 'type': 'static_library', | 112 'type': 'static_library', |
| 95 'dependencies': [ | 113 'dependencies': [ |
| 96 '../base/base.gyp:base', | 114 '../base/base.gyp:base', |
| 97 '../testing/gtest.gyp:gtest', | 115 '../testing/gtest.gyp:gtest', |
| 98 '../url/url.gyp:url_lib', | 116 '../url/url.gyp:url_lib', |
| 99 'offline_pages', | 117 'offline_pages', |
| 100 ], | 118 ], |
| 101 'sources': [ | 119 'sources': [ |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 117 'type': 'none', | 135 'type': 'none', |
| 118 'variables': { | 136 'variables': { |
| 119 'source_file': 'offline_pages/offline_page_types.h', | 137 'source_file': 'offline_pages/offline_page_types.h', |
| 120 }, | 138 }, |
| 121 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 139 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
| 122 }, | 140 }, |
| 123 ], | 141 ], |
| 124 }], | 142 }], |
| 125 ], | 143 ], |
| 126 } | 144 } |
| OLD | NEW |