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 # TODO(dmaclach): can we pick this up some other way? Right now it's | 7 # TODO(dmaclach): can we pick this up some other way? Right now it's |
8 # duplicated from chrome.gyp | 8 # duplicated from chrome.gyp |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 # Use consistent strings across all platforms. Note that the plugin name | 10 # Use consistent strings across all platforms. Note that the plugin name |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 '../third_party/jsoncpp/source/src/lib_json/', | 392 '../third_party/jsoncpp/source/src/lib_json/', |
393 ], | 393 ], |
394 'sources': [ | 394 'sources': [ |
395 # The jsoncpp target is not yet built for Mac OS X 64-bit, so | 395 # The jsoncpp target is not yet built for Mac OS X 64-bit, so |
396 # include the files directly, instead of depending on the target. | 396 # include the files directly, instead of depending on the target. |
397 '../third_party/jsoncpp/source/src/lib_json/json_reader.cpp', | 397 '../third_party/jsoncpp/source/src/lib_json/json_reader.cpp', |
398 '../third_party/jsoncpp/source/src/lib_json/json_writer.cpp', | 398 '../third_party/jsoncpp/source/src/lib_json/json_writer.cpp', |
399 '../third_party/modp_b64/modp_b64.cc', | 399 '../third_party/modp_b64/modp_b64.cc', |
400 'host/me2me_preference_pane.h', | 400 'host/me2me_preference_pane.h', |
401 'host/me2me_preference_pane.mm', | 401 'host/me2me_preference_pane.mm', |
| 402 'host/me2me_preference_pane_confirm_pin.h', |
| 403 'host/me2me_preference_pane_confirm_pin.mm', |
| 404 'host/me2me_preference_pane_disable.h', |
| 405 'host/me2me_preference_pane_disable.mm', |
402 ], | 406 ], |
403 'link_settings': { | 407 'link_settings': { |
404 'libraries': [ | 408 'libraries': [ |
405 '$(SDKROOT)/System/Library/Frameworks/PreferencePanes.framework', | 409 '$(SDKROOT)/System/Library/Frameworks/PreferencePanes.framework', |
406 ], | 410 ], |
407 }, | 411 }, |
408 'xcode_settings': { | 412 'xcode_settings': { |
409 'INFOPLIST_FILE': 'host/me2me_preference_pane-Info.plist', | 413 'INFOPLIST_FILE': 'host/me2me_preference_pane-Info.plist', |
410 'INFOPLIST_PREPROCESS': 'YES', | 414 'INFOPLIST_PREPROCESS': 'YES', |
411 'INFOPLIST_PREPROCESSOR_DEFINITIONS': 'VERSION_FULL="<(version_full)
" VERSION_SHORT="<(version_short)" BUNDLE_NAME="<(bundle_name)" BUNDLE_ID="<(bun
dle_id)" COPYRIGHT_BY="<(copyright_by)" PREF_PANE_ICON_LABEL="<(pref_pane_icon_l
abel)"', | 415 'INFOPLIST_PREPROCESSOR_DEFINITIONS': 'VERSION_FULL="<(version_full)
" VERSION_SHORT="<(version_short)" BUNDLE_NAME="<(bundle_name)" BUNDLE_ID="<(bun
dle_id)" COPYRIGHT_BY="<(copyright_by)" PREF_PANE_ICON_LABEL="<(pref_pane_icon_l
abel)"', |
412 }, | 416 }, |
413 'mac_bundle_resources': [ | 417 'mac_bundle_resources': [ |
414 'host/me2me_preference_pane.xib', | 418 'host/me2me_preference_pane.xib', |
| 419 'host/me2me_preference_pane_confirm_pin.xib', |
| 420 'host/me2me_preference_pane_disable.xib', |
415 'host/me2me_preference_pane-Info.plist', | 421 'host/me2me_preference_pane-Info.plist', |
416 'resources/chromoting128.png', | 422 'resources/chromoting128.png', |
417 ], | 423 ], |
418 'mac_bundle_resources!': [ | 424 'mac_bundle_resources!': [ |
419 'host/me2me_preference_pane-Info.plist', | 425 'host/me2me_preference_pane-Info.plist', |
420 ], | 426 ], |
421 'conditions': [ | 427 'conditions': [ |
422 ['mac_breakpad==1', { | 428 ['mac_breakpad==1', { |
423 'variables': { | 429 'variables': { |
424 # A real .dSYM is needed for dump_syms to operate on. | 430 # A real .dSYM is needed for dump_syms to operate on. |
(...skipping 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1769 '../base/allocator/allocator.gyp:allocator', | 1775 '../base/allocator/allocator.gyp:allocator', |
1770 ], | 1776 ], |
1771 }, | 1777 }, |
1772 ], | 1778 ], |
1773 ], | 1779 ], |
1774 }], | 1780 }], |
1775 ], # end of 'conditions' | 1781 ], # end of 'conditions' |
1776 }, # end of target 'remoting_unittests' | 1782 }, # end of target 'remoting_unittests' |
1777 ], # end of targets | 1783 ], # end of targets |
1778 } | 1784 } |
OLD | NEW |