~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/lp-deps.py

  • Committer: Brad Crittenden
  • Date: 2010-04-28 18:43:25 UTC
  • mto: This revision was merged to the branch mainline in revision 10830.
  • Revision ID: bac@canonical.com-20100428184325-jw3kcxao47a5v9o4
Move registry javascript

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
# JS_DIRSET is a tuple of the dir where the code exists, and the name of the
20
20
# symlink it should be linked as in the icing build directory.
21
21
JS_DIRSET = [
22
 
    (os.path.join('lib', 'lp', 'code', 'javascript'), 'code'),]
 
22
    (os.path.join('lib', 'lp', 'code', 'javascript'), 'code'),
 
23
    (os.path.join('lib', 'lp', 'registry', 'javascript'), 'registry'),
 
24
    ]
23
25
ICING_ROOT = os.path.join(TOP, 'lib', 'canonical', 'launchpad', 'icing')
24
26
ICING_BUILD = os.path.join(ICING_ROOT, 'build')
25
27