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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 static_library("renderer") { | 7 static_library("renderer") { |
8 sources = [ | 8 sources = [ |
9 "pepper_pdf_host.cc", | 9 "pepper_pdf_host.cc", |
10 "pepper_pdf_host.h", | 10 "pepper_pdf_host.h", |
(...skipping 10 matching lines...) Expand all Loading... |
21 "//components/strings", | 21 "//components/strings", |
22 "//content/public/renderer", | 22 "//content/public/renderer", |
23 "//gin", | 23 "//gin", |
24 "//ppapi:ppapi_shared", | 24 "//ppapi:ppapi_shared", |
25 "//third_party/icu", | 25 "//third_party/icu", |
26 "//v8", | 26 "//v8", |
27 "//third_party/WebKit/public:blink_minimal", | 27 "//third_party/WebKit/public:blink_minimal", |
28 ] | 28 ] |
29 | 29 |
30 if (is_win) { | 30 if (is_win) { |
31 cflags = [ | 31 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
32 "/wd4267" # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
33 ] | |
34 } | 32 } |
35 } | 33 } |
OLD | NEW |