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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 785723002: Add new extension APIs related to animation policy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: AccessibilityNotifier 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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
11 # These variables are so the file lists can be shared with the GN build. 11 # These variables are so the file lists can be shared with the GN build.
12 # There are two sections of sources: 12 # There are two sections of sources:
13 # * "Platform"-based sources (OS, toolkit, etc.) 13 # * "Platform"-based sources (OS, toolkit, etc.)
14 # * Feature/directory-based sources (e.g., history, printing) 14 # * Feature/directory-based sources (e.g., history, printing)
15 15
16 ### Platform-based sources ### 16 ### Platform-based sources ###
17 17
18 # The set of sources used on all platforms but iOS that aren't listed in 18 # The set of sources used on all platforms but iOS that aren't listed in
19 # more specific variables below. 19 # more specific variables below.
20 'chrome_browser_non_ios_sources': [ 20 'chrome_browser_non_ios_sources': [
21 'browser/about_flags.cc', 21 'browser/about_flags.cc',
22 'browser/about_flags.h', 22 'browser/about_flags.h',
23 'browser/accessibility/accessibility_notifier.cc',
24 'browser/accessibility/accessibility_notifier.h',
25 'browser/accessibility/accessibility_notifier_factory.cc',
26 'browser/accessibility/accessibility_notifier_factory.h',
27 'browser/accessibility/animation_policy_prefs.cc',
28 'browser/accessibility/animation_policy_prefs.h',
23 'browser/android/accessibility/font_size_prefs_android.cc', 29 'browser/android/accessibility/font_size_prefs_android.cc',
24 'browser/android/accessibility/font_size_prefs_android.h', 30 'browser/android/accessibility/font_size_prefs_android.h',
25 'browser/android/accessibility_util.cc', 31 'browser/android/accessibility_util.cc',
26 'browser/android/accessibility_util.h', 32 'browser/android/accessibility_util.h',
27 'browser/android/activity_type_id_list.h', 33 'browser/android/activity_type_id_list.h',
28 'browser/android/activity_type_ids.cc', 34 'browser/android/activity_type_ids.cc',
29 'browser/android/activity_type_ids.h', 35 'browser/android/activity_type_ids.h',
30 'browser/android/app_google_location_settings_helper.cc', 36 'browser/android/app_google_location_settings_helper.cc',
31 'browser/android/app_google_location_settings_helper.h', 37 'browser/android/app_google_location_settings_helper.h',
32 'browser/android/appmenu/app_menu_drag_helper.cc', 38 'browser/android/appmenu/app_menu_drag_helper.cc',
(...skipping 3681 matching lines...) Expand 10 before | Expand all | Expand 10 after
3714 'variables': { 3720 'variables': {
3715 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3721 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3716 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3722 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3717 }, 3723 },
3718 'includes': [ '../build/protoc.gypi' ] 3724 'includes': [ '../build/protoc.gypi' ]
3719 }, 3725 },
3720 ], 3726 ],
3721 },], 3727 },],
3722 ], 3728 ],
3723 } 3729 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698