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