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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 8113006: Add js api for hosted/pacakged apps to request notification authorization (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 9 years, 2 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'target_name': 'renderer', 8 'target_name': 'renderer',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 'renderer/spellchecker/spellcheck.cc', 171 'renderer/spellchecker/spellcheck.cc',
172 'renderer/spellchecker/spellcheck.h', 172 'renderer/spellchecker/spellcheck.h',
173 'renderer/spellchecker/spellcheck_worditerator.cc', 173 'renderer/spellchecker/spellcheck_worditerator.cc',
174 'renderer/spellchecker/spellcheck_worditerator.h', 174 'renderer/spellchecker/spellcheck_worditerator.h',
175 'renderer/static_v8_external_string_resource.cc', 175 'renderer/static_v8_external_string_resource.cc',
176 'renderer/static_v8_external_string_resource.h', 176 'renderer/static_v8_external_string_resource.h',
177 'renderer/translate_helper.cc', 177 'renderer/translate_helper.cc',
178 'renderer/translate_helper.h', 178 'renderer/translate_helper.h',
179 'renderer/visitedlink_slave.cc', 179 'renderer/visitedlink_slave.cc',
180 'renderer/visitedlink_slave.h', 180 'renderer/visitedlink_slave.h',
181 'renderer/weak_v8_function_map.cc',
182 'renderer/weak_v8_function_map.h',
181 ], 183 ],
182 'conditions': [ 184 'conditions': [
183 ['disable_nacl!=1', { 185 ['disable_nacl!=1', {
184 'dependencies': [ 186 'dependencies': [
185 'nacl', 187 'nacl',
186 ], 188 ],
187 'sources': [ 189 'sources': [
188 'renderer/nacl_desc_wrapper_chrome.cc', 190 'renderer/nacl_desc_wrapper_chrome.cc',
189 ], 191 ],
190 }], 192 }],
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 'export_dependent_settings': [ 230 'export_dependent_settings': [
229 '<(allocator_target)', 231 '<(allocator_target)',
230 ], 232 ],
231 }], 233 }],
232 ], 234 ],
233 }], 235 }],
234 ], 236 ],
235 }, 237 },
236 ], 238 ],
237 } 239 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698