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

Side by Side Diff: components/components.gyp

Issue 1058873010: Move blink scheduler implementation into a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 ], 84 ],
85 }], 85 }],
86 ['OS != "ios"', { 86 ['OS != "ios"', {
87 'includes': [ 87 'includes': [
88 'app_modal.gypi', 88 'app_modal.gypi',
89 'browsing_data.gypi', 89 'browsing_data.gypi',
90 'cdm.gypi', 90 'cdm.gypi',
91 'devtools_http_handler.gypi', 91 'devtools_http_handler.gypi',
92 'navigation_interception.gypi', 92 'navigation_interception.gypi',
93 'power.gypi', 93 'power.gypi',
94 'scheduler.gypi',
94 'visitedlink.gypi', 95 'visitedlink.gypi',
95 'web_cache.gypi', 96 'web_cache.gypi',
96 'web_contents_delegate_android.gypi', 97 'web_contents_delegate_android.gypi',
97 'web_modal.gypi', 98 'web_modal.gypi',
98 'webui_generator.gypi', 99 'webui_generator.gypi',
99 ], 100 ],
100 }], 101 }],
101 ['OS == "ios"', { 102 ['OS == "ios"', {
102 'includes': [ 103 'includes': [
103 'open_from_clipboard.gypi', 104 'open_from_clipboard.gypi',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 'printing.gypi', 147 'printing.gypi',
147 ], 148 ],
148 }], 149 }],
149 ['enable_plugins==1', { 150 ['enable_plugins==1', {
150 'includes': [ 151 'includes': [
151 'pdf.gypi', 152 'pdf.gypi',
152 ], 153 ],
153 }], 154 }],
154 ], 155 ],
155 } 156 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698