| 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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 '../sandbox/sandbox.gyp:sandbox', | 402 '../sandbox/sandbox.gyp:sandbox', |
| 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 'installer_util', | 411 'installer_util', |
| 412 'image_pre_reader', | 412 'file_pre_reader', |
| 413 '../base/base.gyp:base', | 413 '../base/base.gyp:base', |
| 414 '../crypto/crypto.gyp:crypto', | 414 '../crypto/crypto.gyp:crypto', |
| 415 '../breakpad/breakpad.gyp:breakpad_handler', | 415 '../breakpad/breakpad.gyp:breakpad_handler', |
| 416 '../breakpad/breakpad.gyp:breakpad_sender', | 416 '../breakpad/breakpad.gyp:breakpad_sender', |
| 417 '../chrome_elf/chrome_elf.gyp:chrome_elf', | 417 '../chrome_elf/chrome_elf.gyp:chrome_elf', |
| 418 '../components/components.gyp:crash_component', | 418 '../components/components.gyp:crash_component', |
| 419 '../components/components.gyp:crash_core_common', | 419 '../components/components.gyp:crash_core_common', |
| 420 '../sandbox/sandbox.gyp:sandbox', | 420 '../sandbox/sandbox.gyp:sandbox', |
| 421 '../ui/gfx/gfx.gyp:gfx', | 421 '../ui/gfx/gfx.gyp:gfx', |
| 422 '../win8/metro_driver/metro_driver.gyp:metro_driver', | 422 '../win8/metro_driver/metro_driver.gyp:metro_driver', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 ['OS=="win" and component=="shared_library"', { | 501 ['OS=="win" and component=="shared_library"', { |
| 502 'defines': ['COMPILE_CONTENT_STATICALLY'], | 502 'defines': ['COMPILE_CONTENT_STATICALLY'], |
| 503 }], | 503 }], |
| 504 ], | 504 ], |
| 505 }, | 505 }, |
| 506 ], | 506 ], |
| 507 'conditions': [ | 507 'conditions': [ |
| 508 ['OS=="win"', { | 508 ['OS=="win"', { |
| 509 'targets': [ | 509 'targets': [ |
| 510 { | 510 { |
| 511 'target_name': 'image_pre_reader', | 511 'target_name': 'file_pre_reader', |
| 512 'type': 'static_library', | 512 'type': 'static_library', |
| 513 'sources': [ | 513 'sources': [ |
| 514 'app/image_pre_reader_win.cc', | 514 'app/file_pre_reader_win.cc', |
| 515 'app/image_pre_reader_win.h', | 515 'app/file_pre_reader_win.h', |
| 516 ], | 516 ], |
| 517 'dependencies': [ | 517 'dependencies': [ |
| 518 '../base/base.gyp:base', | 518 '../base/base.gyp:base', |
| 519 ], | 519 ], |
| 520 }, | 520 }, |
| 521 ], | 521 ], |
| 522 'conditions': [ | 522 'conditions': [ |
| 523 ['disable_nacl!=1 and target_arch=="ia32"', { | 523 ['disable_nacl!=1 and target_arch=="ia32"', { |
| 524 'targets': [ | 524 'targets': [ |
| 525 { | 525 { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 'dependencies': [ | 613 'dependencies': [ |
| 614 'chrome_nacl_win64', | 614 'chrome_nacl_win64', |
| 615 ], | 615 ], |
| 616 }], | 616 }], |
| 617 ], | 617 ], |
| 618 }, | 618 }, |
| 619 ], | 619 ], |
| 620 }], | 620 }], |
| 621 ], | 621 ], |
| 622 } | 622 } |
| OLD | NEW |