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

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

Issue 52553008: Eliminate the CALENDAR_PICKER compile time flag as only android uses this flag and the web facing p… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Fix winbot by eliminating last checks for CALENDAR_PICKER Created 7 years, 1 month 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/web/tests/LocaleWinTest.cpp ('k') | no next file » | 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 '<(make_file_arrays)', 313 '<(make_file_arrays)',
314 '<@(resources)' 314 '<@(resources)'
315 ], 315 ],
316 'outputs': [ 316 'outputs': [
317 '<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPicker.h', 317 '<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPicker.h',
318 '<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPicker.cpp', 318 '<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPicker.cpp',
319 ], 319 ],
320 'action': [ 320 'action': [
321 'python', 321 'python',
322 '<(make_file_arrays)', 322 '<(make_file_arrays)',
323 '--condition=ENABLE(CALENDAR_PICKER)',
tkent 2013/11/05 21:09:19 This change increase Android binary size needlessl
324 '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPicker .h', 323 '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPicker .h',
325 '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPick er.cpp', 324 '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPick er.cpp',
326 '<@(resources)', 325 '<@(resources)',
327 ], 326 ],
328 }, 327 },
329 { 328 {
330 'action_name': 'ColorSuggestionPicker', 329 'action_name': 'ColorSuggestionPicker',
331 'variables': { 330 'variables': {
332 'resources': [ 331 'resources': [
333 'resources/colorSuggestionPicker.css', 332 'resources/colorSuggestionPicker.css',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 ['clang==1', { 376 ['clang==1', {
378 'target_defaults': { 377 'target_defaults': {
379 'cflags': ['-Wglobal-constructors'], 378 'cflags': ['-Wglobal-constructors'],
380 'xcode_settings': { 379 'xcode_settings': {
381 'WARNING_CFLAGS': ['-Wglobal-constructors'], 380 'WARNING_CFLAGS': ['-Wglobal-constructors'],
382 }, 381 },
383 }, 382 },
384 }], 383 }],
385 ], # conditions 384 ], # conditions
386 } 385 }
OLDNEW
« no previous file with comments | « Source/web/tests/LocaleWinTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698