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

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: correct patch set 1 mistake 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
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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 'outputs': [ 596 'outputs': [
597 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', 597 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp',
598 ], 598 ],
599 'action': [ 599 'action': [
600 'python', 600 'python',
601 '../build/scripts/make_token_matcher.py', 601 '../build/scripts/make_token_matcher.py',
602 '../core/html/HTMLMetaElement-in.cpp', 602 '../core/html/HTMLMetaElement-in.cpp',
603 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', 603 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp',
604 ], 604 ],
605 }, 605 },
606 {
607 'action_name': 'ColorData',
608 'inputs': [
609 'platform/ColorData.gperf',
610 ],
611 'outputs': [
612 '<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp',
613 ],
614 'action': [
615 '<(gperf_exe)',
616 '--key-positions=*',
617 '-D', '-s', '2',
618 '<@(_inputs)',
619 '--output-file=<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp',
620 ],
621 },
622 ], 606 ],
623 'rules': [ 607 'rules': [
624 { 608 {
625 'rule_name': 'bison', 609 'rule_name': 'bison',
626 'extension': 'y', 610 'extension': 'y',
627 'outputs': [ 611 'outputs': [
628 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp', 612 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp',
629 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).h' 613 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).h'
630 ], 614 ],
631 'action': [ 615 'action': [
632 'python', 616 'python',
633 '../build/scripts/rule_bison.py', 617 '../build/scripts/rule_bison.py',
634 '<(RULE_INPUT_PATH)', 618 '<(RULE_INPUT_PATH)',
635 '<(SHARED_INTERMEDIATE_DIR)/blink', 619 '<(SHARED_INTERMEDIATE_DIR)/blink',
636 '<(bison_exe)', 620 '<(bison_exe)',
637 ], 621 ],
638 'msvs_cygwin_shell': 1, 622 'msvs_cygwin_shell': 1,
639 }, 623 },
624 {
625 'rule_name': 'gperf',
626 'extension': 'gperf',
627 'outputs': [
628 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp',
629 ],
630 'inputs': [
631 '../build/scripts/make-hash-tools.pl',
632 ],
633 'msvs_cygwin_shell': 0,
634 'action': [
635 '<(perl_exe)',
636 '../build/scripts/make-hash-tools.pl',
637 '<(SHARED_INTERMEDIATE_DIR)/blink',
638 '<(RULE_INPUT_PATH)',
639 '<(gperf_exe)',
640 ],
641 },
abarth-chromium 2013/10/25 15:24:18 This looks like a bad merge. You don't need to ad
rwlbuis 2013/10/25 15:44:28 Done.
640 ], 642 ],
641 }, 643 },
642 ], 644 ],
643 } 645 }
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/CSSParser.h » ('j') | Source/platform/HashTools.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698