| 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 '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 a consistent MIME-type independent of branding. | 10 # Use a consistent MIME-type independent of branding. |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 ], | 169 ], |
| 170 'sources': [ | 170 'sources': [ |
| 171 'host/plugin/host_plugin.cc', | 171 'host/plugin/host_plugin.cc', |
| 172 'host/plugin/host_plugin.def', | 172 'host/plugin/host_plugin.def', |
| 173 'host/plugin/host_plugin.rc', | 173 'host/plugin/host_plugin.rc', |
| 174 'host/plugin/host_plugin_resource.h', | 174 'host/plugin/host_plugin_resource.h', |
| 175 'host/plugin/host_plugin_utils.cc', | 175 'host/plugin/host_plugin_utils.cc', |
| 176 'host/plugin/host_plugin_utils.h', | 176 'host/plugin/host_plugin_utils.h', |
| 177 'host/plugin/host_script_object.cc', | 177 'host/plugin/host_script_object.cc', |
| 178 'host/plugin/host_script_object.h', | 178 'host/plugin/host_script_object.h', |
| 179 'host/plugin/policy_hack/json_value_serializer.cc', |
| 180 'host/plugin/policy_hack/json_value_serializer.h', |
| 181 'host/plugin/policy_hack/nat_policy.h', |
| 182 'host/plugin/policy_hack/nat_policy_linux.cc', |
| 183 'host/plugin/policy_hack/nat_policy_linux.h', |
| 179 ], | 184 ], |
| 180 'conditions': [ | 185 'conditions': [ |
| 181 ['OS=="mac"', { | 186 ['OS=="mac"', { |
| 182 'mac_bundle': 1, | 187 'mac_bundle': 1, |
| 183 'xcode_settings': { | 188 'xcode_settings': { |
| 184 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)', | 189 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)', |
| 185 'INFOPLIST_FILE': 'host/plugin/host_plugin-Info.plist', | 190 'INFOPLIST_FILE': 'host/plugin/host_plugin-Info.plist', |
| 186 'INFOPLIST_PREPROCESS': 'YES', | 191 'INFOPLIST_PREPROCESS': 'YES', |
| 187 'INFOPLIST_PREPROCESSOR_DEFINITIONS': 'HOST_PLUGIN_MIME_TYPE=<(host_
plugin_mime_type)', | 192 'INFOPLIST_PREPROCESSOR_DEFINITIONS': 'HOST_PLUGIN_MIME_TYPE=<(host_
plugin_mime_type)', |
| 188 'WRAPPER_EXTENSION': '<(plugin_extension)', | 193 'WRAPPER_EXTENSION': '<(plugin_extension)', |
| (...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 ['target_arch=="arm"', { | 832 ['target_arch=="arm"', { |
| 828 'sources!': [ | 833 'sources!': [ |
| 829 'base/decoder_vp8_unittest.cc', | 834 'base/decoder_vp8_unittest.cc', |
| 830 'base/encoder_vp8_unittest.cc', | 835 'base/encoder_vp8_unittest.cc', |
| 831 ], | 836 ], |
| 832 }], | 837 }], |
| 833 ], # end of 'conditions' | 838 ], # end of 'conditions' |
| 834 }, # end of target 'remoting_unittests' | 839 }, # end of target 'remoting_unittests' |
| 835 ], # end of targets | 840 ], # end of targets |
| 836 } | 841 } |
| OLD | NEW |