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

Side by Side Diff: third_party/BUILD.gn

Issue 1545183002: Merge to XFA: Switch from nonstd::unique_ptr to std::unique_ptr. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: xfa Created 4 years, 12 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 2014 PDFium Authors. All rights reserved. 1 # Copyright 2014 PDFium 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("../pdfium.gni") 5 import("../pdfium.gni")
6 6
7 group("third_party") { 7 group("third_party") {
8 deps = [ 8 deps = [
9 ":bigint", 9 ":bigint",
10 ":fx_freetype", 10 ":fx_freetype",
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 372
373 source_set("pdfium_base") { 373 source_set("pdfium_base") {
374 configs -= [ "//build/config/compiler:chromium_code" ] 374 configs -= [ "//build/config/compiler:chromium_code" ]
375 configs += [ 375 configs += [
376 "//build/config/compiler:no_chromium_code", 376 "//build/config/compiler:no_chromium_code",
377 "//third_party/pdfium:pdfium_config", 377 "//third_party/pdfium:pdfium_config",
378 ] 378 ]
379 sources = [ 379 sources = [
380 "base/logging.h", 380 "base/logging.h",
381 "base/macros.h", 381 "base/macros.h",
382 "base/nonstd_unique_ptr.h",
383 "base/numerics/safe_conversions.h", 382 "base/numerics/safe_conversions.h",
384 "base/numerics/safe_conversions_impl.h", 383 "base/numerics/safe_conversions_impl.h",
385 "base/numerics/safe_math.h", 384 "base/numerics/safe_math.h",
386 "base/numerics/safe_math_impl.h", 385 "base/numerics/safe_math_impl.h",
387 "base/stl_util.h", 386 "base/stl_util.h",
388 "base/template_util.h",
389 ] 387 ]
390 } 388 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698