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 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'chrome_dll', | 9 'target_name': 'chrome_dll', |
10 'type': 'none', | 10 'type': 'none', |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 }, | 319 }, |
320 ], | 320 ], |
321 }], # OS=="mac" | 321 }], # OS=="mac" |
322 ], # conditions | 322 ], # conditions |
323 }, # target chrome_main_dll | 323 }, # target chrome_main_dll |
324 ], # targets | 324 ], # targets |
325 }], # OS=="mac" or OS=="win" | 325 }], # OS=="mac" or OS=="win" |
326 ['chrome_multiple_dll', { | 326 ['chrome_multiple_dll', { |
327 'targets': [ | 327 'targets': [ |
328 { | 328 { |
| 329 # GN version: //chrome:chrome_child |
329 'target_name': 'chrome_child_dll', | 330 'target_name': 'chrome_child_dll', |
330 'type': 'shared_library', | 331 'type': 'shared_library', |
331 'product_name': 'chrome_child', | 332 'product_name': 'chrome_child', |
332 'variables': { | 333 'variables': { |
333 'enable_wexit_time_destructors': 1, | 334 'enable_wexit_time_destructors': 1, |
334 }, | 335 }, |
335 'dependencies': [ | 336 'dependencies': [ |
336 '<@(chromium_child_dependencies)', | 337 '<@(chromium_child_dependencies)', |
337 '../content/content.gyp:content_app_child', | 338 '../content/content.gyp:content_app_child', |
338 'chrome_version_resources', | 339 'chrome_version_resources', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 'dependencies': [ | 376 'dependencies': [ |
376 '../pdf/pdf.gyp:pdf', | 377 '../pdf/pdf.gyp:pdf', |
377 ], | 378 ], |
378 }], | 379 }], |
379 ], | 380 ], |
380 }, # target chrome_child_dll | 381 }, # target chrome_child_dll |
381 ], | 382 ], |
382 }], | 383 }], |
383 ], | 384 ], |
384 } | 385 } |
OLD | NEW |