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

Side by Side Diff: components/components.gyp

Issue 717223002: Browser watcher end-end-to-end . (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/lkgr
Patch Set: Move to components Created 6 years, 1 month 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 ['chromeos == 1', { 88 ['chromeos == 1', {
89 'includes': [ 89 'includes': [
90 'pairing.gypi', 90 'pairing.gypi',
91 ], 91 ],
92 }], 92 }],
93 ['OS == "win" or OS == "mac"', { 93 ['OS == "win" or OS == "mac"', {
94 'includes': [ 94 'includes': [
95 'wifi.gypi', 95 'wifi.gypi',
96 ], 96 ],
97 }], 97 }],
98 ['OS == "win"', {
99 'includes': [
100 'browser_watcher.gypi',
101 ],
102 }],
98 ['use_ash==1', { 103 ['use_ash==1', {
99 'includes': [ 104 'includes': [
100 'session_manager.gypi', 105 'session_manager.gypi',
101 'user_manager.gypi', 106 'user_manager.gypi',
102 ], 107 ],
103 }], 108 }],
104 ['android_webview_build == 0', { 109 ['android_webview_build == 0', {
105 # Android WebView fails to build if a dependency on these targets is 110 # Android WebView fails to build if a dependency on these targets is
106 # introduced. 111 # introduced.
107 'includes': [ 112 'includes': [
108 'gcm_driver.gypi', 113 'gcm_driver.gypi',
109 'omnibox.gypi', 114 'omnibox.gypi',
110 'renderer_context_menu.gypi', 115 'renderer_context_menu.gypi',
111 'search_engines.gypi', 116 'search_engines.gypi',
112 'sync_driver.gypi', 117 'sync_driver.gypi',
113 'invalidation.gypi', 118 'invalidation.gypi',
114 ], 119 ],
115 }], 120 }],
116 ['enable_plugins==1', { 121 ['enable_plugins==1', {
117 'includes': [ 122 'includes': [
118 'pdf.gypi', 123 'pdf.gypi',
119 ], 124 ],
120 }], 125 }],
121 ], 126 ],
122 } 127 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698