| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 ], | 121 ], |
| 122 'dependencies': [ | 122 'dependencies': [ |
| 123 '<@(chromium_browser_dependencies)', | 123 '<@(chromium_browser_dependencies)', |
| 124 'chrome_features.gyp:chrome_common_features', | 124 'chrome_features.gyp:chrome_common_features', |
| 125 'policy_path_parser', | 125 'policy_path_parser', |
| 126 '../content/content.gyp:content_app_browser', | 126 '../content/content.gyp:content_app_browser', |
| 127 ], | 127 ], |
| 128 'conditions': [ | 128 'conditions': [ |
| 129 ['OS=="win"', { | 129 ['OS=="win"', { |
| 130 'dependencies': [ | 130 'dependencies': [ |
| 131 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', | |
| 132 '<(DEPTH)/components/components.gyp:policy', | 131 '<(DEPTH)/components/components.gyp:policy', |
| 133 ], | 132 ], |
| 134 }], | 133 }], |
| 135 ['use_aura==1', { | 134 ['use_aura==1', { |
| 136 'dependencies': [ | 135 'dependencies': [ |
| 137 '../ui/compositor/compositor.gyp:compositor', | 136 '../ui/compositor/compositor.gyp:compositor', |
| 138 ], | 137 ], |
| 139 }], | 138 }], |
| 140 ['OS=="win" and target_arch=="ia32"', { | 139 ['OS=="win" and target_arch=="ia32"', { |
| 141 # Add a dependency to custom import library for user32 delay | 140 # Add a dependency to custom import library for user32 delay |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 'dependencies': [ | 402 'dependencies': [ |
| 404 '../pdf/pdf.gyp:pdf', | 403 '../pdf/pdf.gyp:pdf', |
| 405 ], | 404 ], |
| 406 }], | 405 }], |
| 407 ], | 406 ], |
| 408 }, # target chrome_child_dll | 407 }, # target chrome_child_dll |
| 409 ], | 408 ], |
| 410 }], | 409 }], |
| 411 ], | 410 ], |
| 412 } | 411 } |
| OLD | NEW |