| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN version: //chrome | 8 # GN version: //chrome |
| 9 'target_name': 'chrome', | 9 'target_name': 'chrome', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 ], | 403 ], |
| 404 }], | 404 }], |
| 405 ['OS=="win"', { | 405 ['OS=="win"', { |
| 406 'dependencies': [ | 406 'dependencies': [ |
| 407 'chrome_dll', | 407 'chrome_dll', |
| 408 'chrome_nacl_win64', | 408 'chrome_nacl_win64', |
| 409 'chrome_process_finder', | 409 'chrome_process_finder', |
| 410 'chrome_version_resources', | 410 'chrome_version_resources', |
| 411 'client_util', | 411 'client_util', |
| 412 'installer_util', | 412 'installer_util', |
| 413 'image_pre_reader', | 413 'file_pre_reader', |
| 414 '../base/base.gyp:base', | 414 '../base/base.gyp:base', |
| 415 '../crypto/crypto.gyp:crypto', | 415 '../crypto/crypto.gyp:crypto', |
| 416 '../breakpad/breakpad.gyp:breakpad_handler', | 416 '../breakpad/breakpad.gyp:breakpad_handler', |
| 417 '../breakpad/breakpad.gyp:breakpad_sender', | 417 '../breakpad/breakpad.gyp:breakpad_sender', |
| 418 '../chrome_elf/chrome_elf.gyp:chrome_elf', | 418 '../chrome_elf/chrome_elf.gyp:chrome_elf', |
| 419 '../components/components.gyp:crash_component', | 419 '../components/components.gyp:crash_component', |
| 420 '../components/components.gyp:crash_core_common', | 420 '../components/components.gyp:crash_core_common', |
| 421 '../sandbox/sandbox.gyp:sandbox', | 421 '../sandbox/sandbox.gyp:sandbox', |
| 422 '../ui/gfx/gfx.gyp:gfx', | 422 '../ui/gfx/gfx.gyp:gfx', |
| 423 '../win8/metro_driver/metro_driver.gyp:metro_driver', | 423 '../win8/metro_driver/metro_driver.gyp:metro_driver', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 ['OS=="win" and component=="shared_library"', { | 502 ['OS=="win" and component=="shared_library"', { |
| 503 'defines': ['COMPILE_CONTENT_STATICALLY'], | 503 'defines': ['COMPILE_CONTENT_STATICALLY'], |
| 504 }], | 504 }], |
| 505 ], | 505 ], |
| 506 }, | 506 }, |
| 507 ], | 507 ], |
| 508 'conditions': [ | 508 'conditions': [ |
| 509 ['OS=="win"', { | 509 ['OS=="win"', { |
| 510 'targets': [ | 510 'targets': [ |
| 511 { | 511 { |
| 512 'target_name': 'image_pre_reader', | 512 'target_name': 'file_pre_reader', |
| 513 'type': 'static_library', | 513 'type': 'static_library', |
| 514 'sources': [ | 514 'sources': [ |
| 515 'app/image_pre_reader_win.cc', | 515 'app/file_pre_reader_win.cc', |
| 516 'app/image_pre_reader_win.h', | 516 'app/file_pre_reader_win.h', |
| 517 ], | 517 ], |
| 518 'dependencies': [ | 518 'dependencies': [ |
| 519 '../base/base.gyp:base', | 519 '../base/base.gyp:base', |
| 520 ], | 520 ], |
| 521 }, | 521 }, |
| 522 { | 522 { |
| 523 'target_name': 'client_util', | 523 'target_name': 'client_util', |
| 524 'type': 'static_library', | 524 'type': 'static_library', |
| 525 'sources': [ | 525 'sources': [ |
| 526 'app/client_util.cc', | 526 'app/client_util.cc', |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 'dependencies': [ | 625 'dependencies': [ |
| 626 'chrome_nacl_win64', | 626 'chrome_nacl_win64', |
| 627 ], | 627 ], |
| 628 }], | 628 }], |
| 629 ], | 629 ], |
| 630 }, | 630 }, |
| 631 ], | 631 ], |
| 632 }], | 632 }], |
| 633 ], | 633 ], |
| 634 } | 634 } |
| OLD | NEW |