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

Side by Side Diff: components/ntp_snippets.gypi

Issue 2158843002: Introduce a request throttler for limiting requests in mobile NTP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Marc's comments #4 Created 4 years, 5 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 version: //components/ntp_snippets 8 # GN version: //components/ntp_snippets
9 'target_name': 'ntp_snippets', 9 'target_name': 'ntp_snippets',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'ntp_snippets/ntp_snippets_scheduler.h', 50 'ntp_snippets/ntp_snippets_scheduler.h',
51 'ntp_snippets/ntp_snippets_service.cc', 51 'ntp_snippets/ntp_snippets_service.cc',
52 'ntp_snippets/ntp_snippets_service.h', 52 'ntp_snippets/ntp_snippets_service.h',
53 'ntp_snippets/ntp_snippets_status_service.cc', 53 'ntp_snippets/ntp_snippets_status_service.cc',
54 'ntp_snippets/ntp_snippets_status_service.h', 54 'ntp_snippets/ntp_snippets_status_service.h',
55 'ntp_snippets/offline_pages/offline_page_suggestions_provider.cc', 55 'ntp_snippets/offline_pages/offline_page_suggestions_provider.cc',
56 'ntp_snippets/offline_pages/offline_page_suggestions_provider.h', 56 'ntp_snippets/offline_pages/offline_page_suggestions_provider.h',
57 'ntp_snippets/pref_names.cc', 57 'ntp_snippets/pref_names.cc',
58 'ntp_snippets/pref_names.h', 58 'ntp_snippets/pref_names.h',
59 'ntp_snippets/proto/ntp_snippets.proto', 59 'ntp_snippets/proto/ntp_snippets.proto',
60 'ntp_snippets/request_counter.cc',
61 'ntp_snippets/request_counter.h',
60 'ntp_snippets/switches.cc', 62 'ntp_snippets/switches.cc',
61 'ntp_snippets/switches.h', 63 'ntp_snippets/switches.h',
62 ], 64 ],
63 'variables': { 65 'variables': {
64 'proto_in_dir': 'ntp_snippets/proto', 66 'proto_in_dir': 'ntp_snippets/proto',
65 'proto_out_dir': 'components/ntp_snippets/proto', 67 'proto_out_dir': 'components/ntp_snippets/proto',
66 }, 68 },
67 'includes': [ '../build/protoc.gypi' ], 69 'includes': [ '../build/protoc.gypi' ],
68 }, 70 },
69 ], 71 ],
70 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698