| James Melvin | dba1550 | 2017-02-02 15:47:00 -0700 | [diff] [blame] | 1 | genrule( |
| 2 | name = "all", |
| 3 | srcs = [ |
| James Melvin | 2e45ad8 | 2017-03-10 16:16:37 -0700 | [diff] [blame] | 4 | "//example-adminSshCommand", |
| Martin Fick | 7ca0c74 | 2016-11-15 19:22:46 -0700 | [diff] [blame] | 5 | "//example-changeHasOperator", |
| Martin Fick | 9cf48de | 2016-11-15 10:17:50 -0700 | [diff] [blame] | 6 | "//example-changeOperator", |
| James Melvin | ebe7f11 | 2017-04-06 11:09:19 -0600 | [diff] [blame] | 7 | "//example-changeQueryAttributes", |
| James Melvin | 05ab6f8 | 2017-03-13 14:05:55 -0600 | [diff] [blame] | 8 | "//example-commitValidator", |
| Martin Fick | 58bd14f | 2016-11-15 10:10:21 -0700 | [diff] [blame] | 9 | "//example-consoleMetricReporter", |
| James Melvin | d60a156 | 2017-03-15 14:03:46 -0600 | [diff] [blame] | 10 | "//example-deployedOnIncludedInExtension", |
| Martin Fick | f971bdf | 2016-11-15 17:23:45 -0700 | [diff] [blame] | 11 | "//example-restApiCommandOption", |
| Martin Fick | 23ef4d9 | 2016-11-16 08:37:31 -0700 | [diff] [blame] | 12 | "//example-restApiGetRevision", |
| Martin Fick | 0959a0a | 2017-01-26 12:38:46 -0700 | [diff] [blame] | 13 | "//example-restApiPostProject", |
| Martin Fick | d6dad75 | 2016-11-16 08:42:01 -0700 | [diff] [blame] | 14 | "//example-restApiPostRevision", |
| Martin Fick | 2e5b0c8 | 2016-11-16 07:55:57 -0700 | [diff] [blame] | 15 | "//example-servlet", |
| James Melvin | dba1550 | 2017-02-02 15:47:00 -0700 | [diff] [blame] | 16 | "//example-simpleSshCommand", |
| Zac Livingston | b694372 | 2017-03-31 10:36:57 -0600 | [diff] [blame] | 17 | "//example-sshAndRestCommandOptionBeanParseListener", |
| Martin Fick | 4d8bd38 | 2016-11-14 15:03:02 -0700 | [diff] [blame] | 18 | "//example-sshCommandAlias", |
| Martin Fick | f971bdf | 2016-11-15 17:23:45 -0700 | [diff] [blame] | 19 | "//example-sshCommandOption", |
| Martin Fick | 87a90e9 | 2016-11-14 15:30:46 -0700 | [diff] [blame] | 20 | "//example-topMenu", |
| Martin Fick | dacb440 | 2016-11-15 09:48:40 -0700 | [diff] [blame] | 21 | "//example-usageDataLogger", |
| Martin Fick | 69d3a57 | 2016-11-14 20:04:11 -0700 | [diff] [blame] | 22 | "//example-validationListenerAssignee", |
| 23 | "//example-validationListenerCommit", |
| 24 | "//example-validationListenerHashtag", |
| 25 | "//example-validationListenerMerge", |
| 26 | "//example-validationListenerNewProjectCreated", |
| 27 | "//example-validationListenerRefOperation", |
| 28 | "//example-validationListenerUpload", |
| Martin Fick | a4ffb95 | 2016-11-14 16:04:42 -0700 | [diff] [blame] | 29 | "//example-webLinkBranch", |
| 30 | "//example-webLinkFileHistory", |
| 31 | "//example-webLinkPatchSet", |
| 32 | "//example-webLinkProject", |
| Nasser Grainawi | 6a802cf | 2019-11-15 13:52:21 -0800 | [diff] [blame] | 33 | "//example-wuiChangeScreenBelowChangeInfoBlock-GWT", |
| 34 | "//example-wuiChangeScreenHeader-GWT", |
| 35 | "//example-wuiChangeScreenHeaderRightOfButtons-GWT", |
| 36 | "//example-wuiChangeScreenHeaderRightOfPopDowns-GWT", |
| 37 | "//example-wuiPluginScreen-GWT", |
| 38 | "//example-wuiPreferenceScreenBottom-GWT", |
| 39 | "//example-wuiProfileExtensionBottom-GWT", |
| 40 | "//example-wuiSettingsScreen-GWT", |
| James Melvin | dba1550 | 2017-02-02 15:47:00 -0700 | [diff] [blame] | 41 | ], |
| 42 | outs = ["all.zip"], |
| 43 | cmd = " && ".join([ |
| 44 | "p=$$PWD", |
| 45 | "t=$$(mktemp -d || mktemp -d -t bazel-tmp)", |
| 46 | "cp $(SRCS) $$t", |
| 47 | "cd $$t", |
| 48 | "zip -qr $$p/$@ .", |
| 49 | ]), |
| 50 | ) |