summaryrefslogtreecommitdiffstats
path: root/remoting/remoting_webapp_compile.gypi
blob: 094ff9290e57a8bbe94b5aa0fae10e4cb16253ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Copyright 2015 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.
#
# File in charge of Closure compiling remoting's webapp.

{
  'variables': {
    'success_stamp': '<(PRODUCT_DIR)/<(_target_name)_jscompile.stamp',
    'success_stamp_bt': '<(PRODUCT_DIR)/<(_target_name)_bt_jscompile.stamp',
    'success_stamp_ut': '<(PRODUCT_DIR)/<(_target_name)_ut_jscompile.stamp',
  },
  'actions': [
    {
      'action_name': 'Verify remoting webapp',
      'inputs': [
        'remoting_webapp_compile.gypi',
        'remoting_webapp_files.gypi',
        '<@(remoting_webapp_crd_js_files)',
        '<@(remoting_webapp_js_proto_files)',
      ],
      'outputs': [
        '<(success_stamp)',
      ],
      'action': [
        'python', '<(DEPTH)/third_party/closure_compiler/checker.py',
        '--strict',
        '--no-single-file',
        '--success-stamp', '<(success_stamp)',
        '<@(remoting_webapp_crd_js_files)',
        '<@(remoting_webapp_js_proto_files)',
      ],
    },
    {
      'action_name': 'Verify remoting webapp with browsertests',
      'inputs': [
        'remoting_webapp_compile.gypi',
        'remoting_webapp_files.gypi',
        '<@(remoting_webapp_crd_js_files)',
        '<@(remoting_webapp_browsertest_all_js_files)',
        '<@(remoting_webapp_browsertest_js_proto_files)',
      ],
      'outputs': [
        '<(success_stamp_bt)',
      ],
      'action': [
        'python', '<(DEPTH)/third_party/closure_compiler/checker.py',
        '--strict',
        '--no-single-file',
        '--success-stamp', '<(success_stamp_bt)',
        '<@(remoting_webapp_crd_js_files)',
        '<@(remoting_webapp_browsertest_all_js_files)',
        '<@(remoting_webapp_browsertest_js_proto_files)',
      ],
    },
    {
      'action_name': 'Verify remoting webapp unittests',
      'inputs': [
        'remoting_webapp_compile.gypi',
        'remoting_webapp_files.gypi',
        '<@(remoting_webapp_crd_js_files)',
        '<@(remoting_webapp_unittests_all_js_files)',
        '<@(remoting_webapp_unittests_js_proto_files)',
      ],
      'outputs': [
        '<(success_stamp_ut)',
      ],
      'action': [
        'python', '<(DEPTH)/third_party/closure_compiler/checker.py',
        '--strict',
        '--no-single-file',
        '--success-stamp', '<(success_stamp_ut)',
        '<@(remoting_webapp_crd_js_files)',
        '<@(remoting_webapp_unittests_all_js_files)',
        '<@(remoting_webapp_unittests_js_proto_files)',
      ],
    },
  ],
  'includes': ['remoting_webapp_files.gypi'],
}