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

Side by Side Diff: Source/web/web.gyp

Issue 112463008: Move core/platform/animation files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add comments and platform tests Created 6 years, 11 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
« no previous file with comments | « Source/platform/blink_platform.gypi ('k') | Source/web/web.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2011 Google Inc. All rights reserved. 2 # Copyright (C) 2011 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 18 matching lines...) Expand all
29 # 29 #
30 30
31 { 31 {
32 'includes': [ 32 'includes': [
33 '../bindings/bindings.gypi', 33 '../bindings/bindings.gypi',
34 '../core/core.gypi', 34 '../core/core.gypi',
35 '../build/features.gypi', 35 '../build/features.gypi',
36 '../build/scripts/scripts.gypi', 36 '../build/scripts/scripts.gypi',
37 '../build/win/precompile.gypi', 37 '../build/win/precompile.gypi',
38 '../modules/modules.gypi', 38 '../modules/modules.gypi',
39 '../platform/blink_platform.gypi',
39 '../wtf/wtf.gypi', 40 '../wtf/wtf.gypi',
40 'web.gypi', 41 'web.gypi',
41 ], 42 ],
42 'targets': [ 43 'targets': [
43 { 44 {
44 'target_name': 'webkit', 45 'target_name': 'webkit',
45 'type': '<(component)', 46 'type': '<(component)',
46 'variables': { 'enable_wexit_time_destructors': 1, }, 47 'variables': { 'enable_wexit_time_destructors': 1, },
47 'dependencies': [ 48 'dependencies': [
48 '../config.gyp:config', 49 '../config.gyp:config',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 '../core/testing/v8', # for WebCoreTestSupport.h, needed to link in window.internals code. 110 '../core/testing/v8', # for WebCoreTestSupport.h, needed to link in window.internals code.
110 ], 111 ],
111 'sources': [ 112 'sources': [
112 # Compile Blink unittest files into webkit.dll in compon ent build mode 113 # Compile Blink unittest files into webkit.dll in compon ent build mode
113 # since there're methods that are tested but not exporte d. 114 # since there're methods that are tested but not exporte d.
114 # WebUnitTests.* exports an API that runs all the unitte sts inside 115 # WebUnitTests.* exports an API that runs all the unitte sts inside
115 # webkit.dll. 116 # webkit.dll.
116 '<@(bindings_unittest_files)', 117 '<@(bindings_unittest_files)',
117 '<@(core_unittest_files)', 118 '<@(core_unittest_files)',
118 '<@(modules_unittest_files)', 119 '<@(modules_unittest_files)',
120 # FIXME: the next line should not be needed. We prefer t o run these unit tests outside webkit.dll.
121 '<@(platform_web_unittest_files)',
119 '<@(web_unittest_files)', 122 '<@(web_unittest_files)',
120 'WebTestingSupport.cpp', 123 'WebTestingSupport.cpp',
121 'tests/WebUnitTests.cpp', # Components test runner sup port. 124 'tests/WebUnitTests.cpp', # Components test runner sup port.
122 ], 125 ],
123 'conditions': [ 126 'conditions': [
124 ['OS=="win" or OS=="mac"', { 127 ['OS=="win" or OS=="mac"', {
125 'dependencies': [ 128 'dependencies': [
126 '<(DEPTH)/third_party/nss/nss.gyp:*', 129 '<(DEPTH)/third_party/nss/nss.gyp:*',
127 ], 130 ],
128 }], 131 }],
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 ['clang==1', { 374 ['clang==1', {
372 'target_defaults': { 375 'target_defaults': {
373 'cflags': ['-Wglobal-constructors'], 376 'cflags': ['-Wglobal-constructors'],
374 'xcode_settings': { 377 'xcode_settings': {
375 'WARNING_CFLAGS': ['-Wglobal-constructors'], 378 'WARNING_CFLAGS': ['-Wglobal-constructors'],
376 }, 379 },
377 }, 380 },
378 }], 381 }],
379 ], # conditions 382 ], # conditions
380 } 383 }
OLDNEW
« no previous file with comments | « Source/platform/blink_platform.gypi ('k') | Source/web/web.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698