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

Side by Side Diff: third_party/document_image_extractor/document_image_extractor_files.gypi

Issue 1138123002: Update third_party/document_image_extractor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 # List of dependencies for document_image_extractor.js generated by closureb uilder.py 7 # List of dependencies for document_image_extractor.js generated by closureb uilder.py
8 'document_image_extractor_js_files': [ 8 'document_image_extractor_js_files': [
9 'src/ad_element_filter.js', 9 'src/ad_element_filter.js',
10 'src/constants.js', 10 'src/document_feature.js',
11 'src/document_feature_extractor.js', 11 'src/document_feature_extractor.js',
12 'src/document_feature.js', 12 'src/document_image.js',
13 'src/document_image_extractor.js', 13 'src/document_image_extractor.js',
14 'src/document_image.js', 14 'src/dom_utils.js',
15 'src/element_filter.js', 15 'src/element_filter.js',
16 'src/size.js',
16 'src/visible_element_filter.js', 17 'src/visible_element_filter.js',
17 'third_party/closure-library/closure/goog/array/array.js',
18 'third_party/closure-library/closure/goog/asserts/asserts.js',
19 'third_party/closure-library/closure/goog/base.js',
20 'third_party/closure-library/closure/goog/debug/debug.js',
21 'third_party/closure-library/closure/goog/debug/error.js',
22 'third_party/closure-library/closure/goog/debug/logbuffer.js',
23 'third_party/closure-library/closure/goog/debug/logger.js',
24 'third_party/closure-library/closure/goog/debug/logrecord.js',
25 'third_party/closure-library/closure/goog/disposable/disposable.js',
26 'third_party/closure-library/closure/goog/disposable/idisposable.js',
27 'third_party/closure-library/closure/goog/dom/browserfeature.js',
28 'third_party/closure-library/closure/goog/dom/classlist.js',
29 'third_party/closure-library/closure/goog/dom/dom.js',
30 'third_party/closure-library/closure/goog/dom/nodetype.js',
31 'third_party/closure-library/closure/goog/dom/safe.js',
32 'third_party/closure-library/closure/goog/dom/tagname.js',
33 'third_party/closure-library/closure/goog/dom/tags.js',
34 'third_party/closure-library/closure/goog/dom/vendor.js',
35 'third_party/closure-library/closure/goog/events/browserevent.js',
36 'third_party/closure-library/closure/goog/events/browserfeature.js',
37 'third_party/closure-library/closure/goog/events/event.js',
38 'third_party/closure-library/closure/goog/events/eventid.js',
39 'third_party/closure-library/closure/goog/events/eventtype.js',
40 'third_party/closure-library/closure/goog/fs/url.js',
41 'third_party/closure-library/closure/goog/functions/functions.js',
42 'third_party/closure-library/closure/goog/html/safehtml.js',
43 'third_party/closure-library/closure/goog/html/safescript.js',
44 'third_party/closure-library/closure/goog/html/safestyle.js',
45 'third_party/closure-library/closure/goog/html/safestylesheet.js',
46 'third_party/closure-library/closure/goog/html/safeurl.js',
47 'third_party/closure-library/closure/goog/html/trustedresourceurl.js',
48 'third_party/closure-library/closure/goog/html/uncheckedconversions.js',
49 'third_party/closure-library/closure/goog/i18n/bidi.js',
50 'third_party/closure-library/closure/goog/iter/iter.js',
51 'third_party/closure-library/closure/goog/labs/useragent/browser.js',
52 'third_party/closure-library/closure/goog/labs/useragent/engine.js',
53 'third_party/closure-library/closure/goog/labs/useragent/platform.js',
54 'third_party/closure-library/closure/goog/labs/useragent/util.js',
55 'third_party/closure-library/closure/goog/log/log.js',
56 'third_party/closure-library/closure/goog/math/box.js',
57 'third_party/closure-library/closure/goog/math/coordinate.js',
58 'third_party/closure-library/closure/goog/math/math.js',
59 'third_party/closure-library/closure/goog/math/rect.js',
60 'third_party/closure-library/closure/goog/math/size.js',
61 'third_party/closure-library/closure/goog/object/object.js',
62 'third_party/closure-library/closure/goog/reflect/reflect.js',
63 'third_party/closure-library/closure/goog/string/const.js',
64 'third_party/closure-library/closure/goog/string/string.js',
65 'third_party/closure-library/closure/goog/string/typedstring.js',
66 'third_party/closure-library/closure/goog/structs/collection.js',
67 'third_party/closure-library/closure/goog/structs/map.js',
68 'third_party/closure-library/closure/goog/structs/set.js',
69 'third_party/closure-library/closure/goog/structs/structs.js',
70 'third_party/closure-library/closure/goog/style/style.js',
71 'third_party/closure-library/closure/goog/uri/uri.js',
72 'third_party/closure-library/closure/goog/uri/utils.js',
73 'third_party/closure-library/closure/goog/useragent/useragent.js',
74 ], 18 ],
75 }, 19 },
76 } 20 }
OLDNEW
« no previous file with comments | « third_party/document_image_extractor/README.chromium ('k') | third_party/document_image_extractor/dom_controller_files.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698