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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 10809063: Adding Javascript support for the Extended Searchbox API. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressing sky's comments. Created 8 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 'renderer/safe_browsing/phishing_dom_feature_extractor.cc', 242 'renderer/safe_browsing/phishing_dom_feature_extractor.cc',
243 'renderer/safe_browsing/phishing_dom_feature_extractor.h', 243 'renderer/safe_browsing/phishing_dom_feature_extractor.h',
244 'renderer/safe_browsing/phishing_term_feature_extractor.cc', 244 'renderer/safe_browsing/phishing_term_feature_extractor.cc',
245 'renderer/safe_browsing/phishing_term_feature_extractor.h', 245 'renderer/safe_browsing/phishing_term_feature_extractor.h',
246 'renderer/safe_browsing/phishing_thumbnailer.cc', 246 'renderer/safe_browsing/phishing_thumbnailer.cc',
247 'renderer/safe_browsing/phishing_thumbnailer.h', 247 'renderer/safe_browsing/phishing_thumbnailer.h',
248 'renderer/safe_browsing/phishing_url_feature_extractor.cc', 248 'renderer/safe_browsing/phishing_url_feature_extractor.cc',
249 'renderer/safe_browsing/phishing_url_feature_extractor.h', 249 'renderer/safe_browsing/phishing_url_feature_extractor.h',
250 'renderer/safe_browsing/scorer.cc', 250 'renderer/safe_browsing/scorer.cc',
251 'renderer/safe_browsing/scorer.h', 251 'renderer/safe_browsing/scorer.h',
252 'renderer/search_extension.cc',
253 'renderer/search_extension.h',
254 'renderer/searchbox.cc', 252 'renderer/searchbox.cc',
255 'renderer/searchbox.h', 253 'renderer/searchbox.h',
256 'renderer/searchbox_extension.cc', 254 'renderer/searchbox_extension.cc',
257 'renderer/searchbox_extension.h', 255 'renderer/searchbox_extension.h',
258 'renderer/security_filter_peer.cc', 256 'renderer/security_filter_peer.cc',
259 'renderer/security_filter_peer.h', 257 'renderer/security_filter_peer.h',
260 'renderer/spellchecker/spellcheck_provider.cc', 258 'renderer/spellchecker/spellcheck_provider.cc',
261 'renderer/spellchecker/spellcheck_provider.h', 259 'renderer/spellchecker/spellcheck_provider.h',
262 'renderer/spellchecker/spellcheck.cc', 260 'renderer/spellchecker/spellcheck.cc',
263 'renderer/spellchecker/spellcheck.h', 261 'renderer/spellchecker/spellcheck.h',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 'sources!': [ 315 'sources!': [
318 'renderer/extensions/experimental.usb_custom_bindings.cc', 316 'renderer/extensions/experimental.usb_custom_bindings.cc',
319 'renderer/extensions/experimental.usb_custom_bindings.h', 317 'renderer/extensions/experimental.usb_custom_bindings.h',
320 'renderer/resources/extensions/experimental.usb_custom_bindings.js', 318 'renderer/resources/extensions/experimental.usb_custom_bindings.js',
321 ], 319 ],
322 }], 320 }],
323 ], 321 ],
324 }, 322 },
325 ], 323 ],
326 } 324 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698