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

Side by Side Diff: Source/core/core_derived_sources.gyp

Issue 42313002: Move Color.*, DashArray and DrawLooper to Source/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing moved files 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/core/core.gypi ('k') | Source/core/css/CSSParser.h » ('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) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 'outputs': [ 575 'outputs': [
576 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', 576 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp',
577 ], 577 ],
578 'action': [ 578 'action': [
579 'python', 579 'python',
580 '../build/scripts/make_token_matcher.py', 580 '../build/scripts/make_token_matcher.py',
581 '../core/html/HTMLMetaElement-in.cpp', 581 '../core/html/HTMLMetaElement-in.cpp',
582 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', 582 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp',
583 ], 583 ],
584 }, 584 },
585 {
586 'action_name': 'ColorData',
587 'inputs': [
588 'platform/ColorData.gperf',
589 ],
590 'outputs': [
591 '<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp',
592 ],
593 'action': [
594 '<(gperf_exe)',
595 '--key-positions=*',
596 '-D', '-s', '2',
597 '<@(_inputs)',
598 '--output-file=<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp',
599 ],
600 },
601 ], 585 ],
602 'rules': [ 586 'rules': [
603 { 587 {
604 'rule_name': 'bison', 588 'rule_name': 'bison',
605 'extension': 'y', 589 'extension': 'y',
606 'outputs': [ 590 'outputs': [
607 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp', 591 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp',
608 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).h' 592 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).h'
609 ], 593 ],
610 'action': [ 594 'action': [
611 'python', 595 'python',
612 '../build/scripts/rule_bison.py', 596 '../build/scripts/rule_bison.py',
613 '<(RULE_INPUT_PATH)', 597 '<(RULE_INPUT_PATH)',
614 '<(SHARED_INTERMEDIATE_DIR)/blink', 598 '<(SHARED_INTERMEDIATE_DIR)/blink',
615 '<(bison_exe)', 599 '<(bison_exe)',
616 ], 600 ],
617 'msvs_cygwin_shell': 1, 601 'msvs_cygwin_shell': 1,
618 }, 602 },
619 ], 603 ],
620 }, 604 },
621 ], 605 ],
622 } 606 }
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/CSSParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698