| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 { | 61 { |
| 62 'target_name': 'cast_shell_resources', | 62 'target_name': 'cast_shell_resources', |
| 63 'type': 'none', | 63 'type': 'none', |
| 64 # Place holder for cast_shell specific resources. | 64 # Place holder for cast_shell specific resources. |
| 65 }, | 65 }, |
| 66 { | 66 { |
| 67 'target_name': 'cast_shell_pak', | 67 'target_name': 'cast_shell_pak', |
| 68 'type': 'none', | 68 'type': 'none', |
| 69 'dependencies': [ | 69 'dependencies': [ |
| 70 'cast_shell_resources', | 70 'cast_shell_resources', |
| 71 '../content/app/strings/content_strings.gyp:content_strings', |
| 71 '../content/browser/devtools/devtools_resources.gyp:devtools_resources', | 72 '../content/browser/devtools/devtools_resources.gyp:devtools_resources', |
| 72 '../content/content_resources.gyp:content_resources', | 73 '../content/content_resources.gyp:content_resources', |
| 73 '../net/net.gyp:net_resources', | 74 '../net/net.gyp:net_resources', |
| 74 '../third_party/WebKit/public/blink_resources.gyp:blink_resources', | 75 '../third_party/WebKit/public/blink_resources.gyp:blink_resources', |
| 75 '../ui/resources/ui_resources.gyp:ui_resources', | 76 '../ui/resources/ui_resources.gyp:ui_resources', |
| 76 '../ui/strings/ui_strings.gyp:ui_strings', | 77 '../ui/strings/ui_strings.gyp:ui_strings', |
| 77 '../webkit/webkit_resources.gyp:webkit_resources', | 78 '../webkit/webkit_resources.gyp:webkit_resources', |
| 78 '../webkit/webkit_resources.gyp:webkit_strings', | |
| 79 ], | 79 ], |
| 80 'actions': [ | 80 'actions': [ |
| 81 { | 81 { |
| 82 'action_name': 'repack_cast_shell_pack', | 82 'action_name': 'repack_cast_shell_pack', |
| 83 'variables': { | 83 'variables': { |
| 84 'pak_inputs': [ | 84 'pak_inputs': [ |
| 85 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources
.pak', | 85 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources
.pak', |
| 86 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', | 86 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', |
| 87 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_en
-US.pak', |
| 87 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', | 88 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', |
| 88 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent.
pak', | 89 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent.
pak', |
| 89 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/webui_resources.pak', | 90 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/webui_resources.pak', |
| 90 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/app_locale_settings_en-US.p
ak', | 91 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/app_locale_settings_en-US.p
ak', |
| 91 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak', | 92 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak', |
| 92 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', | 93 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', |
| 93 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources_100_percent.pa
k', | 94 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources_100_percent.pa
k', |
| 94 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.pak', | |
| 95 ], | 95 ], |
| 96 'pak_output': '<(PRODUCT_DIR)/cast_shell.pak', | 96 'pak_output': '<(PRODUCT_DIR)/cast_shell.pak', |
| 97 }, | 97 }, |
| 98 'includes': [ '../build/repack_action.gypi' ], | 98 'includes': [ '../build/repack_action.gypi' ], |
| 99 }, | 99 }, |
| 100 ], | 100 ], |
| 101 }, | 101 }, |
| 102 { | 102 { |
| 103 'target_name': 'cast_shell', | 103 'target_name': 'cast_shell', |
| 104 'type': 'executable', | 104 'type': 'executable', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 ], | 143 ], |
| 144 }, { | 144 }, { |
| 145 'dependencies': [ | 145 'dependencies': [ |
| 146 '../ui/ozone/ozone.gyp:eglplatform_shim_x11', | 146 '../ui/ozone/ozone.gyp:eglplatform_shim_x11', |
| 147 ], | 147 ], |
| 148 }], | 148 }], |
| 149 ], | 149 ], |
| 150 }, | 150 }, |
| 151 ], # end of targets | 151 ], # end of targets |
| 152 } | 152 } |
| OLD | NEW |