OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 }], | 413 }], |
414 ], | 414 ], |
415 'dependencies': [ | 415 'dependencies': [ |
416 'packed_extra_resources', | 416 'packed_extra_resources', |
417 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp | 417 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp |
418 # file decide what to do on a per-OS basis; on Mac, internal plugins | 418 # file decide what to do on a per-OS basis; on Mac, internal plugins |
419 # go inside the framework, so this dependency is in chrome_dll.gypi. | 419 # go inside the framework, so this dependency is in chrome_dll.gypi. |
420 '../third_party/adobe/flash/flash_player.gyp:flash_player', | 420 '../third_party/adobe/flash/flash_player.gyp:flash_player', |
421 ], | 421 ], |
422 }], | 422 }], |
423 ['OS=="mac" or OS=="win"', { | 423 ['OS=="mac"', { |
424 'dependencies': [ | 424 'dependencies': [ |
425 # On Windows and Mac, make sure we've built chrome_dll, which | 425 # On Mac, make sure we've built chrome_dll, which contains all of |
426 # contains all of the library code with Chromium functionality. | 426 # the library code with Chromium functionality. |
427 'chrome_dll', | 427 'chrome_dll', |
428 ], | 428 ], |
429 }], | 429 }], |
430 ['OS=="win"', { | 430 ['OS=="win"', { |
431 'dependencies': [ | 431 'dependencies': [ |
| 432 # On Windows there is an intermediate target which builds an |
| 433 # initial version of chrome_dll, then either optimizes it or |
| 434 # copies to its final location. The optimization step also |
| 435 # depends on chrome_exe, so here we depend on the initial |
| 436 # chrome_dll. |
| 437 'chrome_dll_initial', |
432 'chrome_version_resources', | 438 'chrome_version_resources', |
433 'installer_util', | 439 'installer_util', |
434 'installer_util_strings', | 440 'installer_util_strings', |
435 '../base/base.gyp:base', | 441 '../base/base.gyp:base', |
436 '../breakpad/breakpad.gyp:breakpad_handler', | 442 '../breakpad/breakpad.gyp:breakpad_handler', |
437 '../breakpad/breakpad.gyp:breakpad_sender', | 443 '../breakpad/breakpad.gyp:breakpad_sender', |
438 '../sandbox/sandbox.gyp:sandbox', | 444 '../sandbox/sandbox.gyp:sandbox', |
439 'app/locales/locales.gyp:*', | 445 'app/locales/locales.gyp:*', |
440 'app/policy/cloud_policy_codegen.gyp:policy', | 446 'app/policy/cloud_policy_codegen.gyp:policy', |
441 ], | 447 ], |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 'configurations': { | 502 'configurations': { |
497 'Common_Base': { | 503 'Common_Base': { |
498 'msvs_target_platform': 'x64', | 504 'msvs_target_platform': 'x64', |
499 }, | 505 }, |
500 }, | 506 }, |
501 }, | 507 }, |
502 ], | 508 ], |
503 }], | 509 }], |
504 ], | 510 ], |
505 } | 511 } |
OLD | NEW |