Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(439)

Side by Side Diff: components/resources/enhanced_bookmarks/enhanced_bookmarks.gypi

Issue 1152583011: Refactor compile_js.gypi to support script_args and closure_args (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added remoting/compile_js.gypi and decoupled target_name from source_files Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | remoting/compile_js.gypi » ('j') | remoting/compile_js.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4 {
5 'targets' :[
Dan Beam 2015/06/01 22:57:39 'targets': [
Theresa 2015/06/02 22:02:12 Done.
6 {
7 'target_name': 'get_salient_image_url',
8 'variables': {
9 'source_files': [
10 'get_salient_image_url.js',
11 '<@(document_image_extractor_js_files)',
12 ],
13 'script_args' : [
Dan Beam 2015/06/01 22:57:39 'script_args': [
Theresa 2015/06/02 22:02:12 Done.
14 '--no-single-file',
15 ],
16 'closure_args' : [
Dan Beam 2015/06/01 22:57:39 'closure_args': [
Theresa 2015/06/02 22:02:12 Done.
17 '--output_wrapper', '(function(){%output% return GetSalientImageUrl(); })();',
18 ]
19 },
20 'includes': [
21 '../../../third_party/document_image_extractor/document_image_extractor_ files.gypi',
22 '../../../third_party/closure_compiler/compile_js.gypi'
23 ],
24 },
25 {
26 'target_name': 'dom_initializer',
27 'variables': {
28 'source_files': [
29 'dom_initializer.js',
30 '<@(dom_controller_js_files)',
31 ],
32 'script_args' : [
33 '--no-single-file',
34 ],
35 'closure_args' : [
36 '--output_wrapper', '(function(){%output%})();',
37 ],
38 },
39 'includes': [
40 '../../../third_party/document_image_extractor/dom_controller_files.gypi ',
41 '../../../third_party/closure_compiler/compile_js.gypi',
42 ],
43 },
44 ],
45 }
OLDNEW
« no previous file with comments | « no previous file | remoting/compile_js.gypi » ('j') | remoting/compile_js.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698