Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |