| 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 'conditions': [ | 5 'conditions': [ |
| 6 # Dummy target to allow chrome to require chrome_dll to build | 6 # Dummy target to allow chrome to require chrome_dll to build |
| 7 # without actually linking to the library | 7 # without actually linking to the library |
| 8 ['OS=="mac"', { | 8 ['OS=="mac"', { |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 ['win_use_allocator_shim==1', { | 253 ['win_use_allocator_shim==1', { |
| 254 'dependencies': [ | 254 'dependencies': [ |
| 255 '<(allocator_target)', | 255 '<(allocator_target)', |
| 256 ], | 256 ], |
| 257 }], | 257 }], |
| 258 ['enable_basic_printing==1 or enable_print_preview==1', { | 258 ['enable_basic_printing==1 or enable_print_preview==1', { |
| 259 'dependencies': [ | 259 'dependencies': [ |
| 260 '../printing/printing.gyp:printing', | 260 '../printing/printing.gyp:printing', |
| 261 ], | 261 ], |
| 262 }], | 262 }], |
| 263 ['chrome_pgo_phase==1', { | |
| 264 'msvs_settings': { | |
| 265 'VCLinkerTool': { | |
| 266 'LinkTimeCodeGeneration': '2', | |
| 267 'AdditionalOptions': [ | |
| 268 '/PogoSafeMode', | |
| 269 ], | |
| 270 }, | |
| 271 }, | |
| 272 }], | |
| 273 ['chrome_pgo_phase==2', { | |
| 274 'msvs_settings': { | |
| 275 'VCLinkerTool': { | |
| 276 'LinkTimeCodeGeneration': '3', | |
| 277 }, | |
| 278 }, | |
| 279 }], | |
| 280 ] | 263 ] |
| 281 }], | 264 }], |
| 282 ['chrome_multiple_dll==1', { | 265 ['chrome_multiple_dll==1', { |
| 283 'defines': [ | 266 'defines': [ |
| 284 'CHROME_MULTIPLE_DLL_BROWSER', | 267 'CHROME_MULTIPLE_DLL_BROWSER', |
| 285 ], | 268 ], |
| 286 }, { | 269 }, { |
| 287 'dependencies': [ | 270 'dependencies': [ |
| 288 '<@(chromium_child_dependencies)', | 271 '<@(chromium_child_dependencies)', |
| 289 '../content/content.gyp:content_app_both', | 272 '../content/content.gyp:content_app_both', |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 'dependencies': [ | 391 'dependencies': [ |
| 409 '../pdf/pdf.gyp:pdf', | 392 '../pdf/pdf.gyp:pdf', |
| 410 ], | 393 ], |
| 411 }], | 394 }], |
| 412 ], | 395 ], |
| 413 }, # target chrome_child_dll | 396 }, # target chrome_child_dll |
| 414 ], | 397 ], |
| 415 }], | 398 }], |
| 416 ], | 399 ], |
| 417 } | 400 } |
| OLD | NEW |