Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: components/offline_pages.gypi

Issue 2260963003: [Offline pages] Enabling notifications for pages saved later (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding tests Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 { 91 {
92 # GN: //components/offline_pages/downloads:offline_pages_ui_adapter 92 # GN: //components/offline_pages/downloads:offline_pages_ui_adapter
93 'target_name': 'offline_pages_ui_adapter', 93 'target_name': 'offline_pages_ui_adapter',
94 'type': 'static_library', 94 'type': 'static_library',
95 'include_dirs': [ 95 'include_dirs': [
96 '..', 96 '..',
97 '../..', 97 '../..',
98 ], 98 ],
99 'dependencies': [ 99 'dependencies': [
100 '../base/base.gyp:base', 100 '../base/base.gyp:base',
101 'offline_pages_background_offliner',
101 ], 102 ],
102 'sources': [ 103 'sources': [
104 'offline_pages/downloads/download_notifying_observer.cc',
105 'offline_pages/downloads/download_notifying_observer.h',
103 'offline_pages/downloads/download_ui_adapter.cc', 106 'offline_pages/downloads/download_ui_adapter.cc',
104 'offline_pages/downloads/download_ui_adapter.h', 107 'offline_pages/downloads/download_ui_adapter.h',
105 'offline_pages/downloads/download_ui_item.cc', 108 'offline_pages/downloads/download_ui_item.cc',
106 'offline_pages/downloads/download_ui_item.h', 109 'offline_pages/downloads/download_ui_item.h',
107 'offline_pages/downloads/offline_page_download_notifier.h', 110 'offline_pages/downloads/offline_page_download_notifier.h',
108 ], 111 ],
109 }, 112 },
110 { 113 {
111 # GN version: //components/offline_pages:test_support 114 # GN version: //components/offline_pages:test_support
112 'target_name': 'offline_pages_test_support', 115 'target_name': 'offline_pages_test_support',
(...skipping 23 matching lines...) Expand all
136 'type': 'none', 139 'type': 'none',
137 'variables': { 140 'variables': {
138 'source_file': 'offline_pages/offline_page_types.h', 141 'source_file': 'offline_pages/offline_page_types.h',
139 }, 142 },
140 'includes': [ '../build/android/java_cpp_enum.gypi' ], 143 'includes': [ '../build/android/java_cpp_enum.gypi' ],
141 }, 144 },
142 ], 145 ],
143 }], 146 }],
144 ], 147 ],
145 } 148 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698