summaryrefslogtreecommitdiff
path: root/unoil/BUCK
blob: e84663c81d4f1a5950eae9692ca472993f393db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
genrule(
  name = 'unoil-src',
  cmd = ' && '.join([
    'cd $TMP',
    'echo "FAKE SOURCE ARCHIVE" > README',
    'zip -qr $OUT *',
  ]),
  out = 'unoil-src.jar',
  visibility = ['PUBLIC'],
)

genrule(
  name = 'unoil-javadoc',
  cmd = ' && '.join([
    'cd $TMP',
    'echo "FAKE JAVADOC ARCHIVE" > README',
    'zip -qr $OUT *',
  ]),
  out = 'unoil-javadoc.jar',
  visibility = ['PUBLIC'],
)
n: look for CPPUNIT_ASSERT_EQUALS with params swappedNoel Grandin 2017-10-23loplugin:includeform: salStephan Bergmann 2017-07-24fix use after delete in osl::Pipe dtorCaolán McNamara 2017-07-23coverity#1415617 Resource leakCaolán McNamara 2017-07-21osl: fix Pipe noacquire/acquire testsChris Sherlock 2017-07-18osl: update named pipe handle test namesChris Sherlock 2017-07-18osl: pipe test remove unnecessary comment cruftChris Sherlock 2017-06-18remove unused osl/mutex.hxx includesJochen Nitschke 2017-05-16Try to fix loplugin:comparisonwithconstant's rewrite-with-macros issueStephan Bergmann 2017-04-28loplugin:cppunitassertequals: salStephan Bergmann 2017-02-13Fix typosAndrea Gelmini