| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'target_defaults': { | 5 'target_defaults': { |
| 6 'variables': { | 6 'variables': { |
| 7 'chrome_dll_target': 0, | 7 'chrome_dll_target': 0, |
| 8 }, | 8 }, |
| 9 'target_conditions': [ | 9 'target_conditions': [ |
| 10 ['chrome_dll_target==1', { | 10 ['chrome_dll_target==1', { |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 ['OS=="mac" or OS=="win"', { | 62 ['OS=="mac" or OS=="win"', { |
| 63 'targets': [ | 63 'targets': [ |
| 64 { | 64 { |
| 65 'target_name': 'chrome_dll', | 65 'target_name': 'chrome_dll', |
| 66 'type': 'shared_library', | 66 'type': 'shared_library', |
| 67 'variables': { | 67 'variables': { |
| 68 'chrome_dll_target': 1, | 68 'chrome_dll_target': 1, |
| 69 }, | 69 }, |
| 70 'dependencies': [ | 70 'dependencies': [ |
| 71 '<@(chromium_dependencies)', | 71 '<@(chromium_dependencies)', |
| 72 'policy' | 72 'app/policy/cloud_policy_codegen.gyp:policy', |
| 73 ], | 73 ], |
| 74 'conditions': [ | 74 'conditions': [ |
| 75 ['OS=="win"', { | 75 ['OS=="win"', { |
| 76 'product_name': 'chrome', | 76 'product_name': 'chrome', |
| 77 'msvs_guid': 'C0A7EE2C-2A6D-45BE-BA78-6D006FDF52D9', | 77 'msvs_guid': 'C0A7EE2C-2A6D-45BE-BA78-6D006FDF52D9', |
| 78 'dependencies': [ | 78 'dependencies': [ |
| 79 # On Windows, link the dependencies (libraries) that make | 79 # On Windows, link the dependencies (libraries) that make |
| 80 # up actual Chromium functionality into this .dll. | 80 # up actual Chromium functionality into this .dll. |
| 81 'chrome_dll_version', | 81 'chrome_dll_version', |
| 82 'chrome_resources', | 82 'chrome_resources', |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 617 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 618 }, | 618 }, |
| 619 }, | 619 }, |
| 620 }, | 620 }, |
| 621 }, | 621 }, |
| 622 }, # target chrome_dll | 622 }, # target chrome_dll |
| 623 ], | 623 ], |
| 624 }], | 624 }], |
| 625 ], | 625 ], |
| 626 } | 626 } |
| OLD | NEW |