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

Side by Side Diff: base/base.gyp

Issue 262773015: Add an UMA metric to track whether chrome is running on a tablet. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix review issues. Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | base/win/win_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'link_settings': { 176 'link_settings': {
177 'libraries': [ 177 'libraries': [
178 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 178 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
179 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', 179 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
180 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', 180 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework',
181 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 181 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
182 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', 182 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
183 ], 183 ],
184 }, 184 },
185 }], 185 }],
186 ['OS == "win"', {
187 'msvs_settings': {
188 'VCLinkerTool': {
189 'DelayLoadDLLs': [
190 'powrprof.dll',
191 ],
192 'AdditionalDependencies': [
193 'powrprof.lib',
194 ],
195 },
196 },
197 }],
186 ['OS != "win" and OS != "ios"', { 198 ['OS != "win" and OS != "ios"', {
187 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'], 199 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'],
188 },], 200 },],
189 ['component=="shared_library"', { 201 ['component=="shared_library"', {
190 'conditions': [ 202 'conditions': [
191 ['OS=="win"', { 203 ['OS=="win"', {
192 'sources!': [ 204 'sources!': [
193 'debug/debug_on_start_win.cc', 205 'debug/debug_on_start_win.cc',
194 ], 206 ],
195 }], 207 }],
(...skipping 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 'base_unittests.isolate', 1463 'base_unittests.isolate',
1452 ], 1464 ],
1453 'sources': [ 1465 'sources': [
1454 'base_unittests.isolate', 1466 'base_unittests.isolate',
1455 ], 1467 ],
1456 }, 1468 },
1457 ], 1469 ],
1458 }], 1470 }],
1459 ], 1471 ],
1460 } 1472 }
OLDNEW
« no previous file with comments | « no previous file | base/win/win_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698