summaryrefslogtreecommitdiffstats
path: root/rlz/rlz.gyp
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-22 23:58:07 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-22 23:58:07 +0000
commitd3b7dcd4ed660815cab523588cb7e622f8c871bb (patch)
tree4b63c4538428b382e829ce896cec1b797362a6d5 /rlz/rlz.gyp
parent6962f3bde370e79f7f813a98a30c434c822de1e7 (diff)
downloadchromium_src-d3b7dcd4ed660815cab523588cb7e622f8c871bb.zip
chromium_src-d3b7dcd4ed660815cab523588cb7e622f8c871bb.tar.gz
chromium_src-d3b7dcd4ed660815cab523588cb7e622f8c871bb.tar.bz2
rlz: Add a binary that prints the machine id
Partners apparently need this for something. There's a Windows version of this too already, but I couldn't find the source for that. BUG=none Review URL: https://chromiumcodereview.appspot.com/10872005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152880 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'rlz/rlz.gyp')
-rw-r--r--rlz/rlz.gyp13
1 files changed, 10 insertions, 3 deletions
diff --git a/rlz/rlz.gyp b/rlz/rlz.gyp
index 5b0db4b7..5284134 100644
--- a/rlz/rlz.gyp
+++ b/rlz/rlz.gyp
@@ -27,7 +27,6 @@
{
'target_name': 'rlz_lib',
'type': 'static_library',
- 'include_dirs': [],
'dependencies': [
'../base/base.gyp:base',
'../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
@@ -99,7 +98,6 @@
{
'target_name': 'rlz_unittests',
'type': 'executable',
- 'include_dirs': [],
'dependencies': [
':rlz_lib',
'../base/base.gyp:base',
@@ -128,6 +126,16 @@
}]
],
},
+ {
+ 'target_name': 'rlz_id',
+ 'type': 'executable',
+ 'dependencies': [
+ ':rlz_lib',
+ ],
+ 'sources': [
+ 'examples/rlz_id.cc',
+ ],
+ },
],
'conditions': [
['OS=="win"', {
@@ -135,7 +143,6 @@
{
'target_name': 'rlz',
'type': 'shared_library',
- 'include_dirs': [],
'sources': [
'win/dll/dll_main.cc',
'win/dll/exports.cc',