| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'base_target': 0, | 8 'base_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 'link_settings': { | 517 'link_settings': { |
| 518 'libraries': [ | 518 'libraries': [ |
| 519 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', | 519 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
| 520 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', | 520 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', |
| 521 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 521 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 522 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 522 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 523 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', | 523 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', |
| 524 '$(SDKROOT)/System/Library/Frameworks/Security.framework', | 524 '$(SDKROOT)/System/Library/Frameworks/Security.framework', |
| 525 ], | 525 ], |
| 526 }, | 526 }, |
| 527 'sources!': [ |
| 528 'message_pump_libevent.cc', |
| 529 ], |
| 527 }], | 530 }], |
| 528 [ 'OS != "win"', { | 531 [ 'OS != "win"', { |
| 529 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'], | |
| 530 'sources!': [ | 532 'sources!': [ |
| 531 'third_party/purify/pure_api.c', | 533 'third_party/purify/pure_api.c', |
| 532 'event_recorder.cc', | 534 'event_recorder.cc', |
| 533 'resource_util.cc', | 535 'resource_util.cc', |
| 534 ], | 536 ], |
| 535 },], | 537 },], |
| 538 [ 'OS != "mac" and OS != "win"', { |
| 539 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'], |
| 540 },], |
| 536 [ 'component=="shared_library"', { | 541 [ 'component=="shared_library"', { |
| 537 'defines': [ | 542 'defines': [ |
| 538 'BASE_DLL', | 543 'BASE_DLL', |
| 539 'BASE_IMPLEMENTATION', | 544 'BASE_IMPLEMENTATION', |
| 540 ], | 545 ], |
| 541 'conditions': [ | 546 'conditions': [ |
| 542 ['OS=="win"', { | 547 ['OS=="win"', { |
| 543 'msvs_disabled_warnings': [ | 548 'msvs_disabled_warnings': [ |
| 544 4251, | 549 4251, |
| 545 ], | 550 ], |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 'third_party/xdg_mime/xdgmimemagic.c', | 691 'third_party/xdg_mime/xdgmimemagic.c', |
| 687 'third_party/xdg_mime/xdgmimemagic.h', | 692 'third_party/xdg_mime/xdgmimemagic.h', |
| 688 'third_party/xdg_mime/xdgmimeparent.c', | 693 'third_party/xdg_mime/xdgmimeparent.c', |
| 689 'third_party/xdg_mime/xdgmimeparent.h', | 694 'third_party/xdg_mime/xdgmimeparent.h', |
| 690 ], | 695 ], |
| 691 }, | 696 }, |
| 692 ], | 697 ], |
| 693 }], | 698 }], |
| 694 ], | 699 ], |
| 695 } | 700 } |
| OLD | NEW |