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

Side by Side Diff: cc/cc.gyp

Issue 14823005: Remove inside_chromium_build gyp variable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort gyps, fix ios Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | content/browser/devtools/devtools_resources.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'cc_source_files': [ 8 'cc_source_files': [
9 'animation/animation.cc', 9 'animation/animation.cc',
10 'animation/animation.h', 10 'animation/animation.h',
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 'trees/proxy.h', 343 'trees/proxy.h',
344 'trees/quad_culler.cc', 344 'trees/quad_culler.cc',
345 'trees/quad_culler.h', 345 'trees/quad_culler.h',
346 'trees/single_thread_proxy.cc', 346 'trees/single_thread_proxy.cc',
347 'trees/single_thread_proxy.h', 347 'trees/single_thread_proxy.h',
348 'trees/thread_proxy.cc', 348 'trees/thread_proxy.cc',
349 'trees/thread_proxy.h', 349 'trees/thread_proxy.h',
350 'trees/tree_synchronizer.cc', 350 'trees/tree_synchronizer.cc',
351 'trees/tree_synchronizer.h', 351 'trees/tree_synchronizer.h',
352 ], 352 ],
353 'conditions': [
354 ['inside_chromium_build==1', {
355 'webkit_src_dir': '<(DEPTH)/third_party/WebKit',
356 }, {
357 'webkit_src_dir': '<(DEPTH)/../../..',
358 }],
359 ],
360 }, 353 },
361 'conditions': [
362 ['inside_chromium_build==0', {
363 'defines': [
364 'INSIDE_WEBKIT_BUILD=1',
365 ],
366 }],
367 ],
368 'targets': [ 354 'targets': [
369 { 355 {
370 'target_name': 'cc', 356 'target_name': 'cc',
371 'type': '<(component)', 357 'type': '<(component)',
372 'dependencies': [ 358 'dependencies': [
373 '<(DEPTH)/base/base.gyp:base', 359 '<(DEPTH)/base/base.gyp:base',
374 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 360 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
375 '<(DEPTH)/gpu/gpu.gyp:gpu', 361 '<(DEPTH)/gpu/gpu.gyp:gpu',
376 '<(DEPTH)/skia/skia.gyp:skia', 362 '<(DEPTH)/skia/skia.gyp:skia',
377 '<(DEPTH)/media/media.gyp:media', 363 '<(DEPTH)/media/media.gyp:media',
378 '<(DEPTH)/ui/gl/gl.gyp:gl', 364 '<(DEPTH)/ui/gl/gl.gyp:gl',
379 '<(DEPTH)/ui/surface/surface.gyp:surface', 365 '<(DEPTH)/ui/surface/surface.gyp:surface',
380 '<(DEPTH)/ui/ui.gyp:ui', 366 '<(DEPTH)/ui/ui.gyp:ui',
381 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 367 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
382 ], 368 ],
383 'defines': [ 369 'defines': [
384 'CC_IMPLEMENTATION=1', 370 'CC_IMPLEMENTATION=1',
385 ], 371 ],
386 'sources': [ 372 'sources': [
387 '<@(cc_source_files)', 373 '<@(cc_source_files)',
388 ], 374 ],
389 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 375 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
390 'msvs_disabled_warnings': [ 4267, ], 376 'msvs_disabled_warnings': [ 4267, ],
391 }, 377 },
392 ], 378 ],
393 } 379 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | content/browser/devtools/devtools_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698