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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 'libraries': [ | 200 'libraries': [ |
201 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 201 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
202 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', | 202 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', |
203 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', | 203 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', |
204 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 204 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
205 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 205 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
206 ], | 206 ], |
207 }, | 207 }, |
208 }], | 208 }], |
209 ['OS != "win" and (OS != "ios" or _toolset == "host")', { | 209 ['OS != "win" and (OS != "ios" or _toolset == "host")', { |
210 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'], | 210 'dependencies': ['third_party/libevent/libevent.gyp:libevent'], |
211 },], | 211 },], |
212 ['component=="shared_library"', { | 212 ['component=="shared_library"', { |
213 'conditions': [ | 213 'conditions': [ |
214 ['OS=="win"', { | 214 ['OS=="win"', { |
215 'sources!': [ | 215 'sources!': [ |
216 'debug/debug_on_start_win.cc', | 216 'debug/debug_on_start_win.cc', |
217 ], | 217 ], |
218 }], | 218 }], |
219 ], | 219 ], |
220 }], | 220 }], |
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
802 ['icu_use_data_file_flag==0', { | 802 ['icu_use_data_file_flag==0', { |
803 # This is needed to trigger the dll copy step on windows. | 803 # This is needed to trigger the dll copy step on windows. |
804 # TODO(mark): This should not be necessary. | 804 # TODO(mark): This should not be necessary. |
805 'dependencies': [ | 805 'dependencies': [ |
806 '../third_party/icu/icu.gyp:icudata', | 806 '../third_party/icu/icu.gyp:icudata', |
807 ], | 807 ], |
808 }], | 808 }], |
809 ], | 809 ], |
810 }, { # OS != "win" | 810 }, { # OS != "win" |
811 'dependencies': [ | 811 'dependencies': [ |
812 '../third_party/libevent/libevent.gyp:libevent' | 812 'third_party/libevent/libevent.gyp:libevent' |
813 ], | 813 ], |
814 }], | 814 }], |
815 ], # conditions | 815 ], # conditions |
816 'target_conditions': [ | 816 'target_conditions': [ |
817 ['OS == "ios" and _toolset != "host"', { | 817 ['OS == "ios" and _toolset != "host"', { |
818 'sources/': [ | 818 'sources/': [ |
819 # Pull in specific Mac files for iOS (which have been filtered out | 819 # Pull in specific Mac files for iOS (which have been filtered out |
820 # by file name rules). | 820 # by file name rules). |
821 ['include', '^mac/bind_objc_block_unittest\\.mm$'], | 821 ['include', '^mac/bind_objc_block_unittest\\.mm$'], |
822 ['include', '^mac/foundation_util_unittest\\.mm$',], | 822 ['include', '^mac/foundation_util_unittest\\.mm$',], |
(...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1735 '../build/isolate.gypi', | 1735 '../build/isolate.gypi', |
1736 ], | 1736 ], |
1737 'sources': [ | 1737 'sources': [ |
1738 'base_unittests.isolate', | 1738 'base_unittests.isolate', |
1739 ], | 1739 ], |
1740 }, | 1740 }, |
1741 ], | 1741 ], |
1742 }], | 1742 }], |
1743 ], | 1743 ], |
1744 } | 1744 } |
OLD | NEW |