| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |