| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'chromecast_branding%': 'Chromium', | 8 'chromecast_branding%': 'Chromium', |
| 9 }, | 9 }, |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 ], | 53 ], |
| 54 'includes': [ '../build/grit_target.gypi' ], | 54 'includes': [ '../build/grit_target.gypi' ], |
| 55 }, | 55 }, |
| 56 { | 56 { |
| 57 'target_name': 'cast_shell_pak', | 57 'target_name': 'cast_shell_pak', |
| 58 'type': 'none', | 58 'type': 'none', |
| 59 'dependencies': [ | 59 'dependencies': [ |
| 60 'cast_shell_resources', | 60 'cast_shell_resources', |
| 61 '../content/app/resources/content_resources.gyp:content_resources', | 61 '../content/app/resources/content_resources.gyp:content_resources', |
| 62 '../content/app/strings/content_strings.gyp:content_strings', | 62 '../content/app/strings/content_strings.gyp:content_strings', |
| 63 '../content/browser/devtools/devtools_resources.gyp:devtools_resources', | |
| 64 '../net/net.gyp:net_resources', | 63 '../net/net.gyp:net_resources', |
| 65 '../third_party/WebKit/public/blink_resources.gyp:blink_resources', | 64 '../third_party/WebKit/public/blink_resources.gyp:blink_resources', |
| 66 '../ui/resources/ui_resources.gyp:ui_resources', | 65 '../ui/resources/ui_resources.gyp:ui_resources', |
| 67 '../ui/strings/ui_strings.gyp:ui_strings', | 66 '../ui/strings/ui_strings.gyp:ui_strings', |
| 68 ], | 67 ], |
| 69 'actions': [ | 68 'actions': [ |
| 70 { | 69 { |
| 71 'action_name': 'repack_cast_shell_pack', | 70 'action_name': 'repack_cast_shell_pack', |
| 72 'variables': { | 71 'variables': { |
| 73 'pak_inputs': [ | 72 'pak_inputs': [ |
| 74 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources
.pak', | 73 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources
.pak', |
| 75 '<(SHARED_INTERMEDIATE_DIR)/chromecast/shell_resources.pak', | 74 '<(SHARED_INTERMEDIATE_DIR)/chromecast/shell_resources.pak', |
| 76 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', | 75 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', |
| 77 '<(SHARED_INTERMEDIATE_DIR)/content/app/resources/content_resource
s_100_percent.pak', | 76 '<(SHARED_INTERMEDIATE_DIR)/content/app/resources/content_resource
s_100_percent.pak', |
| 78 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_en
-US.pak', | 77 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_en
-US.pak', |
| 79 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', | 78 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', |
| 80 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent.
pak', | 79 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent.
pak', |
| 81 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/webui_resources.pak', | 80 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/webui_resources.pak', |
| 82 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/app_locale_settings_en-US.p
ak', | 81 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/app_locale_settings_en-US.p
ak', |
| 83 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak', | 82 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak', |
| 84 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', | |
| 85 ], | 83 ], |
| 86 'pak_output': '<(PRODUCT_DIR)/assets/cast_shell.pak', | 84 'pak_output': '<(PRODUCT_DIR)/assets/cast_shell.pak', |
| 87 }, | 85 }, |
| 88 'includes': [ '../build/repack_action.gypi' ], | 86 'includes': [ '../build/repack_action.gypi' ], |
| 89 }, | 87 }, |
| 90 ], | 88 ], |
| 91 }, | 89 }, |
| 92 # This target contains all content-embedder implementation that is | 90 # This target contains all content-embedder implementation that is |
| 93 # non-platform-specific. | 91 # non-platform-specific. |
| 94 { | 92 { |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 'sources': [ | 458 'sources': [ |
| 461 'browser/test/chromecast_browser_test.cc', | 459 'browser/test/chromecast_browser_test.cc', |
| 462 'browser/test/chromecast_browser_test.h', | 460 'browser/test/chromecast_browser_test.h', |
| 463 'browser/test/chromecast_browser_test_runner.cc', | 461 'browser/test/chromecast_browser_test_runner.cc', |
| 464 ], | 462 ], |
| 465 }, | 463 }, |
| 466 ], # end of targets | 464 ], # end of targets |
| 467 }], | 465 }], |
| 468 ], # end of conditions | 466 ], # end of conditions |
| 469 } | 467 } |
| OLD | NEW |