OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 pdf_engine = 0 # 0 PDFium | 5 pdf_engine = 0 # 0 PDFium |
6 | 6 |
7 static_library("pdf") { | 7 static_library("pdf") { |
8 sources = [ | 8 sources = [ |
9 "button.h", | 9 "button.h", |
10 "button.cc", | 10 "button.cc", |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 | 65 |
66 if (is_win) { | 66 if (is_win) { |
67 cflags = [ "/wd4267" ] # TODO(jschuh) size_t to int truncations. | 67 cflags = [ "/wd4267" ] # TODO(jschuh) size_t to int truncations. |
68 } | 68 } |
69 | 69 |
70 deps = [ | 70 deps = [ |
71 "//base", | 71 "//base", |
72 "//components/ui/zoom:ui_zoom", | 72 "//components/ui/zoom:ui_zoom", |
73 "//content/public/common", | 73 "//content/public/common", |
74 "//net", | 74 "//net", |
75 "//ppapi:ppapi_internal_module", | 75 "//ppapi/cpp/private:internal_module", |
76 "//third_party/pdfium", | 76 "//third_party/pdfium", |
77 ] | 77 ] |
78 } | 78 } |
OLD | NEW |