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

Side by Side Diff: third_party/WebKit/Source/core/css/BUILD.gn

Issue 2972533002: Support C and Objective-C in jumbo base scripts. (Closed)
Patch Set: Fixup for fixup for core/editing for mac and objective-c Created 3 years, 5 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("//third_party/WebKit/Source/core/core.gni") 5 import("//third_party/WebKit/Source/core/core.gni")
6 6
7 blink_core_sources("css") { 7 blink_core_sources("css") {
8 split_count = 5 8 split_count = 5
9 sources = [ 9 sources = [
10 "ActiveStyleSheets.cpp", 10 "ActiveStyleSheets.cpp",
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 "resolver/StyleResolverStats.h", 585 "resolver/StyleResolverStats.h",
586 "resolver/StyleRuleUsageTracker.cpp", 586 "resolver/StyleRuleUsageTracker.cpp",
587 "resolver/StyleRuleUsageTracker.h", 587 "resolver/StyleRuleUsageTracker.h",
588 "resolver/StyleSharingDepthScope.h", 588 "resolver/StyleSharingDepthScope.h",
589 "resolver/TransformBuilder.cpp", 589 "resolver/TransformBuilder.cpp",
590 "resolver/TransformBuilder.h", 590 "resolver/TransformBuilder.h",
591 "resolver/ViewportStyleResolver.cpp", 591 "resolver/ViewportStyleResolver.cpp",
592 "resolver/ViewportStyleResolver.h", 592 "resolver/ViewportStyleResolver.h",
593 ] 593 ]
594 594
595 if (is_win) {
596 jumbo_excluded_sources = [
597 # For some reason
598 # using CSSCursorImageValue = cssvalue::CSSCursorImageValue;
599 # makes VS confused. Afterwards it doesn't know whether to use
600 # blink::cssvalue or blink directly. Maybe there is a "using
601 # cssvalue" somewhere?
602 "properties/CSSPropertyAPIContent.cpp",
603 "properties/CSSPropertyAPICursor.cpp",
604 ]
605 }
606
595 configs += [ 607 configs += [
596 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 608 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
597 "//build/config/compiler:no_size_t_to_int_warning", 609 "//build/config/compiler:no_size_t_to_int_warning",
598 ] 610 ]
599 } 611 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698