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

Side by Side Diff: chromeos/chromeos.gyp

Issue 834073002: ChromeOS: Implement periodic timezone refresh on geolocation data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment updated. Created 5 years, 11 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'chromeos_sources': [ 9 'chromeos_sources': [
10 'accelerometer/accelerometer_reader.cc', 10 'accelerometer/accelerometer_reader.cc',
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 'settings/timezone_settings.cc', 412 'settings/timezone_settings.cc',
413 'settings/timezone_settings.h', 413 'settings/timezone_settings.h',
414 'system/name_value_pairs_parser.cc', 414 'system/name_value_pairs_parser.cc',
415 'system/name_value_pairs_parser.h', 415 'system/name_value_pairs_parser.h',
416 'system/statistics_provider.cc', 416 'system/statistics_provider.cc',
417 'system/statistics_provider.h', 417 'system/statistics_provider.h',
418 'system/version_loader.cc', 418 'system/version_loader.cc',
419 'system/version_loader.h', 419 'system/version_loader.h',
420 'timezone/timezone_provider.h', 420 'timezone/timezone_provider.h',
421 'timezone/timezone_provider.cc', 421 'timezone/timezone_provider.cc',
422 'timezone/timezone_resolver.cc',
423 'timezone/timezone_resolver.h',
Bernhard Bauer 2015/01/05 10:22:33 Alphabetical ordering: "resolver" after "request".
Alexander Alekseev 2015/01/15 18:59:03 Done.
Bernhard Bauer 2015/01/16 09:25:05 The order of header vs. implementation file is fix
Alexander Alekseev 2015/01/16 20:42:44 Done.
422 'timezone/timezone_request.cc', 424 'timezone/timezone_request.cc',
423 'timezone/timezone_request.h', 425 'timezone/timezone_request.h',
424 'tpm/tpm_password_fetcher.cc', 426 'tpm/tpm_password_fetcher.cc',
425 'tpm/tpm_password_fetcher.h', 427 'tpm/tpm_password_fetcher.h',
426 'tpm/tpm_token_info_getter.cc', 428 'tpm/tpm_token_info_getter.cc',
427 'tpm/tpm_token_info_getter.h', 429 'tpm/tpm_token_info_getter.h',
428 'tpm/tpm_token_loader.cc', 430 'tpm/tpm_token_loader.cc',
429 'tpm/tpm_token_loader.h' 431 'tpm/tpm_token_loader.h'
430 ], 432 ],
431 'chromeos_test_sources': [ 433 'chromeos_test_sources': [
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 '../third_party/cros_system_api/dbus/cryptohome/signed_secret.proto', 700 '../third_party/cros_system_api/dbus/cryptohome/signed_secret.proto',
699 ], 701 ],
700 'variables': { 702 'variables': {
701 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', 703 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome',
702 'proto_out_dir': 'chromeos/cryptohome', 704 'proto_out_dir': 'chromeos/cryptohome',
703 }, 705 },
704 'includes': ['../build/protoc.gypi'], 706 'includes': ['../build/protoc.gypi'],
705 }, 707 },
706 ], 708 ],
707 } 709 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698