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

Side by Side Diff: cc/base/BUILD.gn

Issue 1533773002: Delete CC. (Closed) Base URL: git@github.com:domokit/mojo.git@cl-2e
Patch Set: rebase Created 5 years 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
« no previous file with comments | « cc/PRESUBMIT.py ('k') | cc/base/blocking_task_runner.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 source_set("base") {
6 visibility = [ "//cc" ]
7
8 sources = [
9 "blocking_task_runner.cc",
10 "blocking_task_runner.h",
11 "completion_event.h",
12 "math_util.cc",
13 "math_util.h",
14 "scoped_ptr_deque.h",
15 "scoped_ptr_vector.h",
16 "switches.cc",
17 "switches.h",
18 "util.h",
19 ]
20
21 deps = [
22 "//base",
23 "//base/third_party/dynamic_annotations",
24 "//skia",
25 "//ui/gfx",
26 "//ui/gfx/geometry",
27 ]
28
29 defines = [ "CC_IMPLEMENTATION=1" ]
30
31 if (!is_debug && (is_win || is_android)) {
32 configs -= [ "//build/config/compiler:optimize" ]
33 configs += [ "//build/config/compiler:optimize_max" ]
34 }
35 }
OLDNEW
« no previous file with comments | « cc/PRESUBMIT.py ('k') | cc/base/blocking_task_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698