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

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: Update code Created 5 years, 10 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',
Lei Zhang 2015/01/28 19:38:43 Is this needed on Android? Should all the new code
je_julie(Not used) 2015/01/30 15:58:06 I removed those files because I used PrefsTabHelpe
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/appmenu/app_menu_drag_helper.cc', 36 'browser/android/appmenu/app_menu_drag_helper.cc',
31 'browser/android/appmenu/app_menu_drag_helper.h', 37 'browser/android/appmenu/app_menu_drag_helper.h',
32 'browser/android/banners/app_banner_manager.cc', 38 'browser/android/banners/app_banner_manager.cc',
(...skipping 3650 matching lines...) Expand 10 before | Expand all | Expand 10 after
3683 'variables': { 3689 'variables': {
3684 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3690 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3685 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3691 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3686 }, 3692 },
3687 'includes': [ '../build/protoc.gypi' ] 3693 'includes': [ '../build/protoc.gypi' ]
3688 }, 3694 },
3689 ], 3695 ],
3690 },], 3696 },],
3691 ], 3697 ],
3692 } 3698 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698