diff options
author | Zeno Albisser <zeno.albisser@digia.com> | 2013-08-15 21:46:11 +0200 |
---|---|---|
committer | Zeno Albisser <zeno.albisser@digia.com> | 2013-08-15 21:46:11 +0200 |
commit | 679147eead574d186ebf3069647b4c23e8ccace6 (patch) | |
tree | fc247a0ac8ff119f7c8550879ebb6d3dd8d1ff69 /chromium/google_update | |
download | qtwebengine-chromium-679147eead574d186ebf3069647b4c23e8ccace6.tar.gz |
Initial import.
Diffstat (limited to 'chromium/google_update')
-rw-r--r-- | chromium/google_update/google_update.gyp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/chromium/google_update/google_update.gyp b/chromium/google_update/google_update.gyp new file mode 100644 index 00000000000..c3e76d80477 --- /dev/null +++ b/chromium/google_update/google_update.gyp @@ -0,0 +1,30 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + { + 'target_name': 'google_update', + 'type': 'static_library', + 'sources': [ + 'google_update_idl.idl', + '<(SHARED_INTERMEDIATE_DIR)/google_update/google_update_idl.h', + '<(SHARED_INTERMEDIATE_DIR)/google_update/google_update_idl_i.c', + ], + # This target exports a hard dependency because dependent targets may + # include google_update_idl.h, a generated header. + 'hard_dependency': 1, + 'msvs_settings': { + 'VCMIDLTool': { + 'OutputDirectory': '<(SHARED_INTERMEDIATE_DIR)/google_update', + }, + }, + 'direct_dependent_settings': { + 'include_dirs': [ + '<(SHARED_INTERMEDIATE_DIR)', + ], + }, + }, + ], +} |