1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 # File in charge of Closure compiling remoting's webapp.
9 'success_stamp': '<(PRODUCT_DIR)/<(_target_name)_jscompile.stamp',
10 'success_stamp_bt': '<(PRODUCT_DIR)/<(_target_name)_bt_jscompile.stamp',
11 'success_stamp_ut': '<(PRODUCT_DIR)/<(_target_name)_ut_jscompile.stamp',
16 '<(DEPTH)/third_party/closure_compiler/externs/chrome_extensions.js',
21 'action_name': 'Verify remoting webapp',
23 'remoting_webapp_compile.gypi',
24 'remoting_webapp_files.gypi',
25 '<@(remoting_webapp_crd_js_files)',
26 '<@(remoting_webapp_js_proto_files)',
32 'python', '<(DEPTH)/third_party/closure_compiler/compile.py',
34 '--success-stamp', '<(success_stamp)',
35 '<@(remoting_webapp_crd_js_files)',
36 '<@(remoting_webapp_js_proto_files)',
40 'action_name': 'Verify remoting webapp with browsertests',
42 'remoting_webapp_compile.gypi',
43 'remoting_webapp_files.gypi',
44 '<@(remoting_webapp_crd_js_files)',
45 '<@(remoting_webapp_browsertest_all_js_files)',
46 '<@(remoting_webapp_browsertest_js_proto_files)',
49 '<(success_stamp_bt)',
52 'python', '<(DEPTH)/third_party/closure_compiler/compile.py',
54 '--success-stamp', '<(success_stamp_bt)',
55 '<@(remoting_webapp_crd_js_files)',
56 '<@(remoting_webapp_browsertest_all_js_files)',
57 '<@(remoting_webapp_browsertest_js_proto_files)',
61 'action_name': 'Verify remoting webapp unittests',
63 'remoting_webapp_compile.gypi',
64 'remoting_webapp_files.gypi',
65 '<@(remoting_webapp_crd_js_files)',
66 '<@(remoting_webapp_unittests_all_js_files)',
67 '<@(remoting_webapp_unittests_js_proto_files)',
70 '<(success_stamp_ut)',
73 'python', '<(DEPTH)/third_party/closure_compiler/compile.py',
75 '--success-stamp', '<(success_stamp_ut)',
76 '<@(remoting_webapp_crd_js_files)',
77 '<@(remoting_webapp_unittests_all_js_files)',
78 '<@(remoting_webapp_unittests_js_proto_files)',
82 'includes': ['remoting_webapp_files.gypi'],